iphone: uitextfield, multiple textfields with the same delegate?

后端 未结 2 2005
清酒与你
清酒与你 2021-01-18 05:17

there are two different textfields in my applications and i set the .delegate property of both of them to: self. Now i implemented different methods from the uitextfielddele

2条回答
  •  清酒与你
    2021-01-18 06:07

    UITextField *textFieldOne=..... 
    
    UITextField *textFieldTwo=....
    - (void)textFieldDidBeginEditing:(UITextField *)textField {
    if(textField == textFieldOne)
    { // field one code
    }else{
    //field two code
    }
    }
    

    have two references of the inserted text views and u can compare them at the delegate methods. Not much needed with tags

提交回复
热议问题