I have narrowed down my current issue, to something to do with the UITextView.
I have a TableView, opening a detail view.
I have a navigation bar in place.
The detail view opens fine, and everything is displayed.
If I click on the navigation bar, to go back to the previous page.
And the app hangs.
But doesn't crash out, or cause a fatal issue in the debugger... just freezes.
(It is not the same result, if say I released an object on the previous page an it is no longer there, this just flat out freezes)
Can't click on my details in my Cells... can't click on the navigation bar to go to the previous-previous page.
If I remove the UITextView object from the view/nib file... works fine, no issues. I add it back, but don't connect to anything (just so that it is in the NIB), it causes the issues.
I have even created a new blank nib, and just added the UITextView... and it causes the issue.
I am using this UITextView to display multiple lines of text, it won't be editable.
Any ideas?
Do I need to implement some of the delegate functions, even though I am not going to be using them?
The parent page, is a standard ViewController, with a single View
I have a TableView, opening a detail view.
I have a navigation bar in place.
The detail view opens fine, and everything is displayed.
If I click on the navigation bar, to go back to the previous page.
And the app hangs.
But doesn't crash out, or cause a fatal issue in the debugger... just freezes.
(It is not the same result, if say I released an object on the previous page an it is no longer there, this just flat out freezes)
Can't click on my details in my Cells... can't click on the navigation bar to go to the previous-previous page.
If I remove the UITextView object from the view/nib file... works fine, no issues. I add it back, but don't connect to anything (just so that it is in the NIB), it causes the issues.
I have even created a new blank nib, and just added the UITextView... and it causes the issue.
I am using this UITextView to display multiple lines of text, it won't be editable.
Any ideas?
Do I need to implement some of the delegate functions, even though I am not going to be using them?
The parent page, is a standard ViewController, with a single View