Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #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
|