設定類的所有例項的外觀

要自定義類的所有例項的外觀,請訪問所需類的外觀代理。例如:

設定 UIButton 色調

迅速:

UIButton.appearance().tintColor = UIColor.greenColor()

Objective-C 的:

[UIButton appearance].tintColor = [UIColor greenColor];

設定 UIButton 背景顏色

迅速:

UIButton.appearance().backgroundColor = UIColor.blueColor()

Objective-C 的:

[UIButton appearance].backgroundColor = [UIColor blueColor];

設定 UILabel 文字顏色

迅速:

UILabel.appearance().textColor = UIColor.redColor()

Objective-C 的:

[UILabel appearance].textColor = [UIColor redColor];

設定 UILabel 背景顏色

迅速:

UILabel.appearance().backgroundColor = UIColor.greenColor()

Objective-C 的:

[UILabel appearance].backgroundColor = [UIColor greenColor];

設定 UINavigationBar 色彩

迅速:

UINavigationBar.appearance().tintColor = UIColor.cyanColor()

Objective-C 的:

[UINavigationBar appearance].tintColor = [UIColor cyanColor];

設定 UINavigationBar 背景顏色

迅速:

UINavigationBar.appearance().backgroundColor = UIColor.redColor()

Objective-C 的:

[UINavigationBar appearance].backgroundColor = [UIColor redColor];