菜鸟教程小白 发表于 2022-12-12 18:56:55

iphone - 在 UITextField 中添加按钮


                                            <p><p>我正在开发适用于 iOS 的浏览器应用程序,并希望在位置栏的文本字段内添加一个“阅读器”按钮,就像 Mobile Safari 在检测到该页面是一篇文章时所做的那样。
在 UITextField 右侧添加按钮有什么好方法?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可能想要使用 UITextField 的 <code>rightView</code> 属性。基本上,有两个属性(这个和相应的 <code>leftView</code>)允许您在 UITextField 中放置自定义 View /控件。您可以通过 <code>rightViewMode</code>/<code>leftViewMode</code> 属性控制是否显示这些 View :</p>

<pre><code>UIButton *myButton = ;
// configure your button here
myTextField.rightView = myButton;
myTextField.rightViewMode = UITextFieldViewModeUnlessEditing; // check the docs for other possible values
</code></pre>

<p>另外,还有一个名为 <code>rightViewRectForBounds:</code> 的方法,它返回一个 CGRect ,您的自定义 View /控件将在其中运行。你不应该直接在那里传递你的按钮的尺寸,相反,如果你想放置的东西肯定比这个方法返回的 rect 大(当你在其中放置 View 时 UITextField 代表你调用它),你的 View 将被缩放以适应这个矩形。在这种情况下,您可能想要覆盖它(创建您的类别或 UITextField 的子类。假设您选择一个类别,您的 UITextField+MyButton 应该如下所示:</p>

<pre><code>@interface UITextField(MyButton)
- (CGRect)rightViewRectForBounds:(CGRect)bounds;
@end

@implementation UITextField(MyButton)

- (CGRect)rightViewRectForBounds:(CGRect)bounds
{
    // return the CGRect that would fit your view/button. The buttons param that is passed here is the size of the view that is being added to the textField.
}

// possibly some other methods that you override

@end
</code></pre>

<p>希望这会有所帮助。如另一个答案所述,请先查看文档,看看有哪些方法可以帮助您。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 在 UITextField 中添加按钮,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8927505/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8927505/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 在 UITextField 中添加按钮