iOS UIAppearance

在看别人源码的时候无意中发现了一个神奇的写法

[[UILabel appearance] setBackgroundColor:myColor];

代码的意识是设置全局Label组件的样式

MySpecialClass *myClass = [[MySpecialClass alloc]init];
id myClass = [[NSClassFromString(@"MySpecialClass") alloc] init];

着两段代码意思是一样的都是创建一个名为MySpecialClass的类
但是上面创建的时候如果MySpecialClass不存在则会出现语法错误的情况,但是下面的这个只会返回一个nil。

你可能感兴趣的:(iOS UIAppearance)