Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I've seen a lot of codes that do this:

@interface Test0 : NSObject {
        @private int iVar;
}
@property (readwrite,assign) int iVar;
@end

and some other codes:

@interface Test0 : NSObject {
}
@property (readwrite,assign) int iVar;
@end

I know that you use the @synthesize iVar to tell the compiler to generate the getter and the setter methods for the property iVar.

My questions: do we need to declare the @private int iVar; instance variable? What the advantage of doing so? What is the best practice of declaring instance variables vs property? does the compiler link the instance variable with the property?

Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
792 views
Welcome To Ask or Share your Answers For Others

1 Answer

Modern Objective-C runtimes and compilers that use non-fragile base classes (IIRC, the 64-bit runtime on OS X and the iOS 4.0 and higher runtimes) allow you to omit the instance variable. Your first example is required for older runtimes, the later is all that is required in modern runtimes.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...