我有一个带有标签栏控制器的 mainwindow.xib。第一个标签栏有一个视图,从“View1.xib”加载。在我的 View1.xib 中,我将 UI 元素拖到上面。它在.h中有这个:
#import <UIKit/UIKit.h>
@class View1Controller;
@interface View1Controller : UIViewController {
IBOutlet UIView *view;
IBOutlet UIButton *startButton;
}
@property (retain, nonatomic) UIView *view;
@property (retain, nonatomic) UIButton *startButton;
-(IBAction)startClock:(id)sender;
@end
在 .m 文件中,我什么也不做。它会正常运行。我可以看到视图及其按钮。但是在我添加之后:
@synthesize view, startButton;
当我加载应用程序时,它显示一个没有按钮但没有产生错误的空白视图。怎么了?