objective-c – 使用匿名类别的类别中的私有方法

前端之家收集整理的这篇文章主要介绍了objective-c – 使用匿名类别的类别中的私有方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建一个超过NSDate的类别.它有一些实用方法,不应该是公共接口的一部分.

我怎样才能让它们变成私密的?

在类中创建私有方法时,我倾向于使用“匿名类别”技巧:

@interface Foo()
@property(readwrite,copy) NSString *bar;
- (void) superSecretInternalSaucing;
@end

@implementation Foo
@synthesize bar;
.... must implement the two methods or compiler will warn ....
@end

但它似乎不适用于另一个类别:

@interface NSDate_Comparing() // This won't work at all
@end

@implementation NSDate (NSDate_Comparing)

@end

在类别中使用私有方法的最佳方法是什么?

解决方法

它应该是这样的:
@interface NSDate ()

@end

@implementation NSDate (NSDate_Comparing)

@end
原文链接:https://www.f2er.com/c/119012.html

猜你在找的C&C++相关文章