更改 Digits 界面的主题
Change theme for Digits interface
需要 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。
需要 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。