菜鸟教程小白 发表于 2022-12-13 16:12:00

ios - 我们如何在 iOS 13 的当前 iOS 应用中支持暗模式?


                                            <p><p>我当前的应用程序是用 objC 和 Swift 开发的。我需要支持暗模式。谁能建议我如何在全局范围内实现这一目标?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这里是添加颜色逻辑的代码,应该出现在深色模式中。</p>

<pre><code>if self.traitCollection.userInterfaceStyle == .dark {

//Add your Dark mode colors here
} else {

//Your normal colors should appear here
}
</code></pre>

<p>要了解有关在 iOS 应用程序中调整暗模式的更多信息,请参阅以下博客文章。</p>

<p><strong> <a href="https://www.gurutechnolabs.com/ios-13-dark-mode/" rel="noreferrer noopener nofollow">How to Adopt iOS 13 Dark Mode in your iOS App</a> </strong></p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我们如何在 iOS 13 的当前 iOS 应用中支持暗模式?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/56679376/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/56679376/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我们如何在 iOS 13 的当前 iOS 应用中支持暗模式?