0

我在这里发现要在应用退出时恢复亮度,您必须使用事件applicationWillTerminate

我按以下方式进行

- (void)applicationWillTerminate:(UIApplication *)application
{
    [UIScreen mainScreen].brightness = initialBackLightLevel;
} 

它不起作用。问题可能出在哪里?

4

1 回答 1

0

似乎是 iOS 错误...查看 Apple 开发论坛:https ://devforums.apple.com/message/625119

于 2012-06-17T22:21:34.690 回答