Last Updated: February 20, 2016
·
666
· juice

Interface - @private

Limits the scope of an instance variable to the class that declares it.

Sample:

@interface textCheck : NSObject {

    NSString *publicTextCheck;

@private

    NSString *privateTextCheck;

}

@end