开发者

UITextField leftView

开发者 https://www.devze.com 2022-12-15 14:11 出处:网络
Is it possible to set up a UITextField with a leftView so that if a user clicks into the UITextField the keyboard shows but if they 开发者_如何学Cclick on an icon in the leftView another method is cal

Is it possible to set up a UITextField with a leftView so that if a user clicks into the UITextField the keyboard shows but if they 开发者_如何学Cclick on an icon in the leftView another method is called (i.e., one that displays a UIPickerview)?


Have you checked that the leftFieldViewMode is set to something other than never

[textField setLeftViewMode:UITextFieldViewModeAlways];


Instantiate a button as u do normaly

 UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];

 [btn setFrame:CGRectMake(0,0,30,30)];

 [btn setTitle:@"title" forState:UIControlStateNormal];

[btn addTarget:self action:@selector(BtnClick) forControlEvents:UIControlEventTouchUpInside];

Instantiate a textfield as you do normally

 UITextField *txtfield1=[[UITextField alloc]initWithFrame:CGRectMake(10, 10,300,30)];

[txtfield1 setBackgroundColor:[UIColor grayColor]];

[txtfield1 setPlaceholder:@" Enter"];

To set a view in left side(there is right view also available)

[txtfield1 setLeftView:btn];

if u want the view to show always then below code does it

[txtfield1 setLeftViewMode:UITextFieldViewModeAlways];

if u want the view to show never then

[txtfield1 setLeftViewMode:UITextFieldViewModeNever];

if u want the view to show if the textfield is not edited then below

[txtfield1 setLeftViewMode:UITextFieldViewModeUnlessEditing];

if u want the view to show if the textfield is edited then

[txtfield1 setLeftViewMode:UITextFieldViewModeWhileEditing];

button click event and pop over

-(void)BtnClick
{
  //Usual pop over coding goes here
}


Have you tried using a UIButton for this task? From the documentation for the leftView property:

If your overlay view does not overlap any other sibling views, it receives touch events like any other view. If you specify a control for your view, the control tracks and sends actions as usual. If an overlay view overlaps the clear button, however, the clear button always takes precedence in receiving events.

So create a UIButton instance, configure its appearance and actions as needed, then set it as the leftView property.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号