addSubview估计是调用最多的方法之一,但是初学者经常发生addsubview以后,仍然没看到subview的悲剧。
通常来说,自己以前刚接触oc,frame没设应该是排名第一位的原因,UIView默认frame = {0,0,0,0},不再赘述.
但是最近机器更新到ios8以后,发生灰常诡异的事件。原来的代码在ios7上跑得好好的,一更新到ios8,莫名的一个view上的所有subview全被吃掉了。
调试下来,发现是个很无语的bug,原来是用UILabel alloc以后,放在了UIView类型的变量里面。Demo代码如下:
UIView *_label = [[UILabel alloc] initWithFrame:CGRectMake(0, 300, 320, 50)];
[_label setBackgroundColor:[UIColor whiteColor]];
[self.view addSubview:_label];
UIView *_subview2 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];
[_subview2 setBackgroundColor:[UIColor redColor]];
[_label addSubview:_subview2];
万恶之源就在代码的第一行,只要把 [UILabel alloc] 换成[UIView alloc]就能看得到subview2了。当然为什么会把代码写成这么奇葩的样子,有非常多的历史原因。。。
总之,iOS更新到8以后,这是众多奇怪的灵异事件中的一个。