File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ - (void)applicationDidFinishLaunching:(UIApplication *)application {
1515 [UITableView appearance ].backgroundColor = [UIColor blackColor ];
1616 [UITableView appearance ].separatorColor = [UIColor colorWithWhite: 0 alpha: 1 ];
1717 [UITableViewCell appearance ].backgroundColor = [UIColor colorWithWhite: 0 .1176470588f alpha: 1 ];
18- [UITableViewCell appearance ].textColor = [UIColor whiteColor ];
18+ #pragma clang diagnostic push
19+ #pragma clang diagnostic ignored "-Wdeprecated-declarations"
20+ [UITableViewCell appearance ].textColor = [UIColor whiteColor ]; // please make this easier apple.
21+ #pragma clang diagnostic pop
1922
2023 UIView *selectedBackgroundView = [[[UIView alloc ] init ] autorelease ];
2124 selectedBackgroundView.backgroundColor = [UIColor colorWithWhite: 0 .2078431373f alpha: 1 ];
You can’t perform that action at this time.
0 commit comments