..
嗨 嗨 嗨 嗨 你好 你好 你好 你好 你好 Hi, Hi, Hi, Hi, Hi, Hi, Hi,
我想清理一下我的视野 是否Load方法,因为我 它正在增加 代码的行数 和它变得乱七八糟。.
现在,我的UI是按方案构建的, 因为我想学习这样做事的方式。.
So I read on this SO Post that I can set the UI items in a seperate -9void) method and then link to that void by using [self method]
现在当我用这种方式的时候 对我来说似乎行不通.
喜欢,如果我想设置后底颜色 这将有效:
- (void)viewDidLoad
{
[super viewDidLoad];
self..view..backgroundColor = [UIColor colorWithRed:0..0 green:0..2 blue:0..38 alpha:1..0];
}
但这并不表示:
- (void)viewDidLoad
{
[super viewDidLoad];
[self backgroundColor];
// Do any additional setup after loading the view..
}
-(void)backgroundColor
{
UIView *backgroundView = [[UIView alloc] init];
backgroundView..backgroundColor = [UIColor colorWithRed:0..0 green:0..2 blue:0..38 alpha:1..0];
}
我误会了吗?
感谢预告:-)