So I have a UITableView with several UITextFields in cells on the page. I want one of the fields to support multiple lines of text, so I am trying to replace it with a UITextView. All controls are members of the class and are initialized in cellForRowAtIndexPath if they don't already exist. The controls are released in -(void)dealloc.
Problem is, when I replace the UITextField with a UITextView, everything sort of goes crazy. The view loads properly and I can edit the text in the field. But when I leave the view, the debugger console (which has been attached to the process up to this point) prints the banner again, starting with "Loading program into debugger..." (as if it had just attached), the UI freezes, and I have an __objc_error at the top of the call stack. The highest recognizable method name on the stack is -[UITextView webViewDidChange:].
I don't know what to make of this or how to get my UITextView working in this context. I have searched the forums and the samples to no avail.
Thank you for any help you may provide.
Problem is, when I replace the UITextField with a UITextView, everything sort of goes crazy. The view loads properly and I can edit the text in the field. But when I leave the view, the debugger console (which has been attached to the process up to this point) prints the banner again, starting with "Loading program into debugger..." (as if it had just attached), the UI freezes, and I have an __objc_error at the top of the call stack. The highest recognizable method name on the stack is -[UITextView webViewDidChange:].
I don't know what to make of this or how to get my UITextView working in this context. I have searched the forums and the samples to no avail.
Thank you for any help you may provide.