菜鸟教程小白 发表于 2022-12-12 15:18:27

ios - 警报 View 中的两个文本字段,它们之间有空格


                                            <p><p>我有一个带有文本字段的 UIAlertView。有人可以帮助我如何在它们之间留出一些空间吗?</p>

<pre><code>newBoatAlert.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;

UITextField * alertTextField1 = ;
alertTextField1.keyboardType = UIKeyboardTypeDefault;
alertTextField1.placeholder = @&#34;Name&#34;;

UITextField * alertTextField2 = ;
alertTextField2.frame=CGRectMake(alertTextField1.frame.origin.x, alertTextField1.frame.origin.y+alertTextField1.frame.size.height+10, alertTextField1.frame.size.width, alertTextField1.frame.size.height+40);

alertTextField2.keyboardType = UIKeyboardTypeDefault;
alertTextField2.placeholder = @&#34;Description&#34;;
alertTextField2.secureTextEntry=NO;
</code></pre>

<p>现在看起来像这样:</p>

<p> <img src="/image/YiJgK.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您无法编辑 Apple 提供的内置 <code>UIAlertView</code> 样式(至少在没有可能会在下一个 iOS 版本中被破坏的肮脏技巧时不能编辑)。</p>

<p>如果您想自定义警报的外观,例如在文本字段之间添加空格,您应该创建自己的 <code>UIView</code> 子类并从头开始实现自己的警报 UI。</p>

<p>此外,如果您确实选择使用 Apple 的内置警报而不是滚动自己的警报,<code>UIAlertView</code> 现在已被弃用,您应该使用 <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAlertController_class/index.html#//apple_ref/occ/cl/UIAlertController" rel="noreferrer noopener nofollow"><code>UIAlertController</code></a>反而。它为文本框提供了相同的功能,并为按钮提供了更多自定义选项(尽管您仍然无法更改布局)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 警报 View 中的两个文本字段,它们之间有空格,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30260454/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30260454/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 警报 View 中的两个文本字段,它们之间有空格