ios - Clear button on UITextView -
how can add clear button (cross inside circle) text view in text field?
just make uibutton , put on uitextview , set action clear text view;
uitextview.frame = (0,0,320,416); uibutton.frame = (310,0,10,10); [uibutton setimage:@"cross.png" forcontrolstate:uicontrolstatenoraml]; [uibutton addtarget:self action:@selector(clearbuttonselected:) forcontrolevents:uicontroleventtouchupinside]; -(void)clearbuttonselected{ uitextview=@""; }
hope want clear text view text when click on cross button above if not understand can send proper program that
Comments
Post a Comment