我只习惯于 xcode 中的故事板,但我的新老板希望每个人都在 xib 文件中完成,我没有经验。
到目前为止,我所做的只是创建了一个新的单视图应用程序,并在“viewDidLoad”方法下添加了代码..
UILabel *scoreLabel = [ [UILabel alloc ] initWithFrame:CGRectMake(0, 0.0, 150.0, 43.0) ];
[self addSubview:scoreLabel];
和线
[self addSubview:scoreLabel];
抛出错误 'No Visible @Interface for 'ViewController' 声明选择器 'addSubView'
我到底在这里想念什么?