Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TCKAppearanceSettings.m 655B

il y a 4 ans
il y a 4 ans
123456789101112131415161718192021222324252627282930313233
  1. #import "TCKRootListController.h"
  2. @implementation TCKAppearanceSettings
  3. -(UIColor *)tintColor {
  4. return [UIColor colorWithRed:0.64 green:0.67 blue:1.00 alpha:1.0];;
  5. }
  6. -(UIColor *)statusBarTintColor {
  7. return [UIColor whiteColor];
  8. }
  9. -(UIColor *)navigationBarTitleColor {
  10. return [UIColor whiteColor];
  11. }
  12. -(UIColor *)navigationBarTintColor {
  13. return [UIColor whiteColor];
  14. }
  15. -(UIColor *)tableViewCellSeparatorColor {
  16. return [UIColor colorWithWhite:0 alpha:0];
  17. }
  18. -(UIColor *)navigationBarBackgroundColor {
  19. return [UIColor colorWithRed:0.64 green:0.67 blue:1.00 alpha:1.0];;
  20. }
  21. -(BOOL)translucentNavigationBar {
  22. return NO;
  23. }
  24. @end