How do I make a UITextView behave like a UITextField
or maybe how to make a UITextField
appear like this, same with the photo, i've searched a lot about making UITextField
into multiple lines but i can't seem to get how they did it, is there any method that is much simpler,
I also tried putting a UITextView
and then sending it at back and putting at top a UITextField
and in the viewDidLoad
I did self.commentTextField.frame = self.commentsTextView.frame;
, i thought it would make the UITextField
like a UITextView
.
I want that when I start editing this
- (void)textFieldDidBeginEditing:(UITextView *)textField;
delegate would detect that Im editing the UITextField
because I can't seem to detect when Im editing the UITextView