Check if CGRect null in getter

crizzwald

I am trying to check if a CGRect is null in my property getter and if it is, load a value by default, however, in my init method, when I use the property, it returns zero for all values.

Here is my getter:

- (CGRect)frame
{
    if(CGRectIsNull(_frame))
        _frame = CGRectMake(0,0,60,60);
    return _frame;
}

- (id)init
{
    self = [super initWithFrame:self.frame];
    if(self)
    {
        //do something
    }
    return self;
}

I am not sure what's going on and where to look. Any help is much appreciated.

rmaddy

When you create an instance of your class, the _frame instance variable is automatically initialized, even before the init method is called. Since _frame is a C-struct (CGRect), its memory is cleared to all zeroes. This results in a CGRect with all zero values.

CGRectNull is a special, non-zero CGRect. So your check using CGRectIsNull() will never be true.

Using CGRectIsEmpty is a more proper check for this.

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

The getter 'imgUrl' was called on null

分類Dev

Flutter: The getter 'image' was called on null

分類Dev

nil check inside getter method in swift?

分類Dev

Check for NULL or empty '' in function?

分類Dev

If statement with a null check

分類Dev

Check, if a variable is null in a view

分類Dev

Check '!= null" not working

分類Dev

Conditional statement for null check

分類Dev

How to fix the error 'NoSuchMethodError: The getter 'focusScopeNode' was called on null'?

分類Dev

check null,empty or undefined angularjs

分類Dev

null check in try-with-resources

分類Dev

check null,empty or undefined angularjs

分類Dev

check null,empty or undefined angularjs

分類Dev

String append with Null Check Kotlin

分類Dev

How to check if 2 values IS NULL

分類Dev

How to check if NSDictionary key is NULL

分類Dev

How to check if variable is Null or empty in XSLT?

分類Dev

How to check for NULL when mapping nested JSON?

分類Dev

How to check if a class contains null in Flutter

分類Dev

Best way to check non null precondition in typescript

分類Dev

Check for non null array during filtering an object

分類Dev

Check if DataTables data is not empty or null with jQuery

分類Dev

Check list of values is NULL in PL/SQL

分類Dev

AngularJS - check for null item in ng-repeat

分類Dev

How to check if the value from the json Data is null

分類Dev

Null check vs try/catch when 99% of the time object is not null

分類Dev

Null check vs try/catch when 99% of the time object is not null

分類Dev

Null object design pattern Vs null object check

分類Dev

Which is better when check a list is null : not null or use Any

Related 関連記事

ホットタグ

アーカイブ