例如:我的.h文件如下所示:
// .h file
@protocol pageUpdateDelegate
-(void)pageUpdateMethod2;
@end
@interface ClassA
@property (nonatomic) NSInteger page;
-(void)pageUpdateMethod1;
@end
我想向其他人提供此pageUpdateDelegate协议。 但是,我不希望我的ClassA的财产和方法被其他人透露和使用。 但我肯定会使用ClassA。 那么我该如何保护.h文件中的属性和方法呢? 我只是希望其他人使用协议部分。感谢。