Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #import "TCKRootListController.h"
-
- @implementation TCKAppearanceSettings
-
- -(UIColor *)tintColor {
- return [UIColor colorWithRed:0.17 green:0.09 blue:0.19 alpha:1.0];;
- }
-
- -(UIColor *)statusBarTintColor {
- return [UIColor whiteColor];
- }
-
- -(UIColor *)navigationBarTitleColor {
- return [UIColor whiteColor];
- }
-
- -(UIColor *)navigationBarTintColor {
- return [UIColor whiteColor];
- }
-
- -(UIColor *)tableViewCellSeparatorColor {
- return [UIColor colorWithWhite:0 alpha:0];
- }
-
- -(UIColor *)navigationBarBackgroundColor {
- return [UIColor colorWithRed:0.17 green:0.09 blue:0.19 alpha:1.0];;
- }
-
- -(BOOL)translucentNavigationBar {
- return NO;
- }
-
- @end
|