Frank Du

Results 2 issues of Frank Du

条件:当视图控制器不使用titleLabel,直接设置self.title时 现象:字体颜色会是黑色 情况说明:代理中设置的tintColor(白色)失效。

``` - (void)applicationDidBecomeActive:(NSNotification *)notification { double systemVersion = [[UIDevice currentDevice].systemVersion doubleValue]; if (systemVersion >= 12.0) { [[NSNotificationCenter defaultCenter]postNotificationName:UIApplicationDidEnterBackgroundNotification object:nil]; } } ``` 谢谢!