gpt4 book ai didi

iphone - 在 UITextField 中添加按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:50:52 25 4
gpt4 key购买 nike

我正在开发适用于 iOS 的浏览器应用程序,并希望在地址栏的文本字段内添加一个“阅读器”按钮,就像 Mobile Safari 在检测到该页面是一篇文章时所做的那样。在 UITextField 的右侧添加按钮有什么好方法?

最佳答案

您可能想要使用 UITextField 的 rightView 属性。基本上,有两个属性(这个属性和相应的 leftView)允许您在 UITextField 中放置自定义 View /控件。您可以通过 rightViewMode/leftViewMode 属性控制是否显示这些 View :

UIButton *myButton = [UIButton new];
// configure your button here
myTextField.rightView = myButton;
myTextField.rightViewMode = UITextFieldViewModeUnlessEditing; // check the docs for other possible values

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

@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

希望对您有所帮助。正如另一个答案中所述,请先查看文档,看看有哪些方法可以帮助您。

关于iphone - 在 UITextField 中添加按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8927505/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com