How can add a clearbutton (cross inside a circle) for text view like in text field?
|
|
just make a uibutton and put it on uitextview and set its action for clear text view;
hope you want to clear the text view text when you click on cross button above is help if not understand then i can send you proper program for that |
||||
|
There's nothing built in like there is for the UITextField. You'd have to add the view yourself (probably a UIButton) and place it correctly and also somehow get the text to wrap around it correctly. (And I don't think the latter is really possible.) Maybe instead you should display a toolbar above the keyboard (or an |
|||
|
|
|
For me changing the .frame or the .contentInset properties did not work. For me the best result came from: 1) adding a UIView to the controller, give it round corners and a border to mimic a UITextView.
2) place UITextView on top of this UIView. Place it so that the borders of the underlying UIView stay visible. 3) give the UITextView round corners:
3) Make its width fe. 30pixels less compared to the underlying UIView. You now have space for a clear-button. 4) simply add a UIButton to your controller and place it in the top-right corner of the underlying UIView. 5) change the buttons properties: set its type to 'custom' and set its image to the image of a grey cross. 6) bind an action to the button te clear the UITextView |
|||
|
|