Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

TCKAppearanceSettings.m 655B

4 lat temu
4 lat temu
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