• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

更改整个项目的 UILabel 的文本颜色

用户头像
it1352
帮助1

问题说明

我想更改整个应用程序的所有 UILabel 文本颜色,我该怎么做.是否有任何简单的方法可以更改标签颜色.

i want to change all the UILabel's text color for total app how can i do this .is there any simple way to change label color.

我试过这个,但我想改变在每个班级写这段代码

i tried this ,but i want to change write this code in every class

for( UIView *view in [testScroll subviews])
    {
        if([view isKindOfClass:[UILabel class]])
        {
            [(UILabel *)view setTextColor:[UIColor whiteColor]];

        }
        else if([view isKindOfClass:[UIView class]])

    }

谁有简单的方法.

正确答案

#1

好吧,如果您的目标是 iOS 5 ,那么您可以非常轻松地做到这一点(在您的 appdelegate 中):

Well if you're targeting iOS 5 you could do that really easy (inside you appdelegate):

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    //...

    //This color will affect every label in your app
    [[UILabel appearance] setTextColor:[UIColor redColor]]; 

    //...

    return YES;
}

这是可行的,因为 UILabel 符合 UIAppearance 协议,所以你可以像这样自定义任何符合协议的类.有关此这里有一个很好的教程可以帮助您入门这里是 Apple 的协议文档

This works because UILabel conforms to UIAppearance protocol, so you could customize any class that conforms to the protocol like this. For more information on this here is a nice tutorial to get you started and here is Apple's docs on the protocol

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcgahfg
系列文章
更多 icon
同类精品
更多 icon
继续加载