我已将 UINavigationbar 和 UIscrollView 添加到 UIView(SecondView)。当我单击 firstView 中的按钮时,它应该将我带到 secondView。点击按钮:
SecondView *secondview=[[SecondView alloc]initWithNibName:@"SecondView" bundle:nil];
[self presentModalViewController: secondview animated:NO]; //error at this line
[secondview release];
在 secondView.h
@property(nonatomic,retain)IBOutlet UINavigationBar *navigationBar;
@property(nonatomic,retain)IBOutlet UIScrollView *testscroll;
第二视图.m:
@synthesize navigationBar,testscroll;
但我收到如下错误:
由于未捕获的异常“NSUnknownKeyException”而终止应用程序,原因:SecondView setValue:forUndefinedKey:]:此类与键导航栏的键值编码不兼容。
我的 secondView.xib 是这样的:
无法理解我哪里出错了?