ios - LTR 到 RTL 在 objective-c 中使用相同的 xib
<p><p>我坚持一个观点,我想开发一个同时支持 LTR 和 RTL 的应用程序,但我不想为 LTR 和 RTL 创建两个 .xib。</p>
<p>那么任何人都可以使用相同的 xib 为我提供任何可从 LTR 到 RTL 的方法。</p>
<p>提前谢谢你。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你可以通过改变语义来做到这一点</p>
<pre><code> self.anyView.semanticContentAttribute = .forceLeftToRight
</code></pre>
<p>或</p>
<pre><code> self.anyView.semanticContentAttribute = .forceRightToLeft
</code></pre>
<p>在objective-c中</p>
<pre><code> self.anyView.semanticContentAttribute = UISemanticContentAttributeForceLeftToRight;
</code></pre>
<p>或者</p>
<pre><code> self.anyView.semanticContentAttribute = UISemanticContentAttributeForceRightToLeft;
</code></pre>
<p>另见此演示:<a href="https://github.com/ShKhan9/RTLDemo" rel="noreferrer noopener nofollow">RTLDemo</a> </p></p>
<p style="font-size: 20px;">关于ios - LTR 到 RTL 在 objective-c中使用相同的 xib,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/49250123/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/49250123/
</a>
</p>
页:
[1]