我在研究开源项目时看到了一些代码:here。 但在检查Objective-C语法后,我无法弄清楚其含义。
代码如下所示:
@interface UIViewController (UIViewDeckItem)
@property(nonatomic,readonly,retain) IIViewDeckController *viewDeckController;
@end
@implementation UIViewController (UIViewDeckItem)
@dynamic viewDeckController;
...
@end
@implementation UIViewController (UIViewDeckController_ViewContainmentEmulation_Fakes)
...
@end
我不知道在哪里可以找到有关此实现的相关Obejctive-C信息。
答案 0 :(得分:3)