1. 程式人生 > >iOS設定主題顏色方便使用

iOS設定主題顏色方便使用

  • 在AppDelegate.h檔案中宣告一個全域性變數:
    @property UIColor *zhuTiColor;
  • 在AppDelegate.m中,新增:@synthesize zhuTiColor;
  • 然後在
  • (BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions 中新增:
    zhuTiColor=[UIColor colorWithRed:0x00/255.0 green:0xb2/255.0 blue:0xee/255.0 alpha:1];
  • 在需要使用的地方:
    bt.backgroundColor=delegate.zhuTiColor;