扩展实用程序模板
我正在使用 Xcode Utility 模板(Mainside/Flipside),我需要添加一个新屏幕。我已经添加:
docView.xib (copy of FlipsideView.xib)
docView.m
docView.h
docViewController.m
docViewController.h
在 rootViewController.h 我添加了:
UINavigationBar *docNavigationBar;
docViewController *docViewController;
@property (nonatomic, retain) UINavigationBar *docNavigationBar;
@property (nonatomic, retain) docViewController *docViewController;
在 rootViewController.m 中,我合成了添加的内容:
@synthesize docNavigationBar;
@synthesize docViewController;
我确实将我的 .h 导入 rootViewController.m:
#import "docViewController.h"
当我尝试编译时,我出错了:
RootViewController.m:22: error: syntax error before 'docViewController'
警告:
RootViewController.m:160: warning: property 'docViewController' requires method '-docViewController' to be defined - use @synthesize, @dynamic or provide a method implementation
RootViewController.m:160:警告:属性 'docViewController' 需要定义方法 'setDocViewController:' - 使用 @synthesize、@dynamic 或提供方法实现
我错过了什么?