UIBUTTON和Picker视图 [英] UIBUTTON and picker view

查看:79
本文介绍了UIBUTTON和Picker视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在用户单击按钮时显示选择器 我将UIButton子类化,并更改了其inputview使其可写.

I want to display a picker when the user clicks on a button I subclassed the UIButton and changed its inputview so that it is writable.

我点击了此链接 http://nomtek.com/tips-for -developers/pickers/

我单击按钮,没有任何反应.如果我将inputview从按钮更改为UITextField,则效果很好.有什么想法吗? 谢谢 萨罗

I clickon the button and nothing happens. If I change the inputview from the button to UITextField it works great. Any thoughts? Thanks Saro

推荐答案

inputView属性只是UITextFieldUITextView的一部分,而不是UIButton.

The inputView property is only the part of UITextField and UITextView not UIButton.

   @property (readwrite, retain) UIView *inputView;

尽管您可以使用UIButton达到相同的目的.

Although you could achieve the same using UIButton.

创建一个UIButton对象,然后设置一个 action 方法,并将选择器视图添加到UIButton的action方法中的按钮的父视图中.

Create an UIButton object then set an action method and add your picker view in parent view of your button in the action method of UIButton.

应该是这样的.

-(void) buttonClicked:(id) sender
{
    [self.view addSubview:myPickerView];
}

这篇关于UIBUTTON和Picker视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆