Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
787 views
in Technique[技术] by (71.8m points)

objective c - What is the different between Instance variable vs property ?

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...