Custom Getter & Setter iOS 5

后端 未结 3 1689
挽巷
挽巷 2020-12-13 04:36

I want to override the getter and setter in my ObjC class using ARC.

.h File

@property (retain, nonatomic) Season *season;

.m File

3条回答
  •  执笔经年
    2020-12-13 05:04

    Yep, those are infinite recursive loops. That's because

    self.season = s;
    

    is translated by the compiler into

    [self setSeason:s];
    

    and

    return self.season;
    

    is translated into

    return [self season];
    

    Get rid of the dot-accessor self. and your code will be correct.

    This syntax, however, can be confusing given that your property season and your variable season share the same name (although Xcode will somewhat lessen the confusion by coloring those entities differently). It is possible to explicitly change your variable name by writing

    @synthesize season = _season;
    

    or, better yet, omit the @synthesize directive altogether. The modern Objective-C compiler will automatically synthesize the accessor methods and the instance variable for you.

提交回复
热议问题