更改数字界面

时间:2015-05-13 08:19:46

标签: ios user-interface twitter twitter-digits

需要Twitter Digits SDK的帮助。我需要为我的应用程序实现自定义颜色方案,但似乎无法修改本机Digits UI屏幕的方案。我们如何修改这些屏幕?

1 个答案:

答案 0 :(得分:0)

除了设置背景颜色和强调色之外,您在自定义UI方面没有太多选择。

您可以通过DGTAppearance实例执行此操作。例如;

DGTAppearance *digitsAppearance =
            [[DGTAppearance alloc] init];
  // Change color properties to customize the look:
  digitsAppearance.backgroundColor = [UIColor
                                          colorWithRed:81/255.
                                          green:208/255.
                                          blue:90/255.
                                          alpha:1];
  digitsAppearance.accentColor =
                              [UIColor redColor];

您将找到所需的一切here