菜鸟教程小白 发表于 2022-12-13 04:33:01

ios - 有什么办法可以改变 iOS 大标题的左边距?


                                            <p><p>我想知道是否有任何方法可以更改 iOS 大标题左边距属性。我试图在网上找到它的答案,但我没有成功。</p>

<hr/>

<p><em>额外的问题:项目和屏幕水平边之间的默认边距是 15 吗?我问这个的原因是因为我试图将大标题与我的应用程序的其余元素对齐,屏幕有 15 个左右边距。</em></p>

<p>谢谢你:)</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以这样做:</p>
<pre><code>let style = NSMutableParagraphStyle()
style.firstLineHeadIndent = 10 // This is added to the default margin
UINavigationBar.appearance().largeTitleTextAttributes =
</code></pre>
<p>假设您的“额外问题”中的“其余元素”是表格 View 项,那么是的,15 似乎是默认边距:<a href="https://stackoverflow.com/questions/36982576/why-uitableview-cell-separatorinset-is-default-to-15-when-view-controllers-roo" rel="noreferrer noopener nofollow">Why UITableView cell separatorInset is default to 15, when view controller&#39;s root view Layout Margins is 16?</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 有什么办法可以改变 iOS 大标题的左边距?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/51188294/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/51188294/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 有什么办法可以改变 iOS 大标题的左边距?