菜鸟教程小白 发表于 2022-12-13 11:44:25

ios - iOS 9 中的 RTL 语言行为


                                            <p><p>我们的应用支持 RTL 语言,如阿拉伯语、波斯语。</p>

<p>在 iOS 9 之后,导航 Controller 和标签栏 Controller 的行为发生了变化。我只找到了这个链接<a href="https://stackoverflow.com/questions/31697426/ios-9-disable-support-for-right-to-left-language" rel="noreferrer noopener nofollow">ios-9-disable-support-for-right-to-left-language</a>为了解决这个问题</p>

<p>我在我的 <code>appDelegate</code> 中编写了这段代码,它工作正常,导航栏和标签栏设置为 LTR。 </p>

<pre><code>if(SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@&#34;9.0&#34;)) {
    [ setSemanticContentAttribute:UISemanticContentAttributeForceLeftToRight];
    [ setSemanticContentAttribute:UISemanticContentAttributeForceLeftToRight];
}
</code></pre>

<p>但是<strong>我的问题是:
我无法更改交互式弹出手势方向。</strong> </p>

<p> <a href="/image/4wEVK.png" rel="noreferrer noopener nofollow"><img src="/image/4wEVK.png" alt="enter image description here"/></a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我一直在为同样的问题苦苦挣扎,终于找到了解决方案</p>

<p>你只需要为 navigationController.view 设置 SemanticContentAttribute </p>

<p>在rootViewController的viewDidLoad中:</p>

<pre><code>;
;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iOS 9 中的 RTL 语言行为,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32932463/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32932463/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iOS 9 中的 RTL 语言行为