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

最佳答案

除了设置背景色和强调色外,在自定义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

10-08 15:49