ios - 是否可以仅针对我的应用程序更改设备设置?
<p><p>我的应用程序界面太暗。(背景颜色深蓝色等)所以,我想自动更改 iOS 设备设置。 (当我的应用程序启动时自动增加亮度。)这可能吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>在您的 AppDelegate.m 文件中,查找 <code>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions</code> 方法,并将其写入 <code>return 之前的任何位置</code>打电话。</p>
<pre><code>[ setBrightness:1.0];
</code></pre>
<p>来自文档,</p>
<blockquote>
<p>0 .. 1.0, where 1.0 is maximum brightness. Only supported by main screen.</p>
</blockquote>
<p>附:您只能在真实设备上看到此更改。</p></p>
<p style="font-size: 20px;">关于ios - 是否可以仅针对我的应用程序更改设备设置?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/27244209/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/27244209/
</a>
</p>
页:
[1]