iOS 包含在容器类中时的类外观

示例

使用appearanceWhenContainedInInstancesOfClasses:时,容器类的实例中包含定制的类的实例的外观。对于例如定制UILabel的textColor和backgroundColor内部ViewController类看起来就像这样:

设置UILabel文本颜色

迅速:

UILabel.appearanceWhenContainedInInstancesOfClasses([ViewController.self]).textColor = UIColor.whiteColor()

目标C:

[UILabel appearanceWhenContainedInInstancesOfClasses:@[[ViewController class]]].textColor = [UIColor whiteColor];

设置UILabel背景颜色

迅速:

UILabel.appearanceWhenContainedInInstancesOfClasses([ViewController.self]).backgroundColor = UIColor.blueColor()

目标C:

[UILabel appearanceWhenContainedInInstancesOfClasses:@[[ViewController class]]].backgroundColor = [UIColor blueColor];