Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

TCKAppearanceSettings.m 655B

pirms 4 gadiem
123456789101112131415161718192021222324252627282930313233
  1. #import "TCKRootListController.h"
  2. @implementation TCKAppearanceSettings
  3. -(UIColor *)tintColor {
  4. return [UIColor colorWithRed:0.17 green:0.09 blue:0.19 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.17 green:0.09 blue:0.19 alpha:1.0];;
  20. }
  21. -(BOOL)translucentNavigationBar {
  22. return NO;
  23. }
  24. @end