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

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -