Finally managed to start fiddling with Xcode and Objective-C since yesterday. What I have now is
A UIViewController which has in it
- a UITextView
- a Tab bar with a view Tab buttons (not functional yet)
- a TableView
I have coded basic functionality where a keyboard pops up on the TextView, and when you enter text and hit 'done', I am able to capture the text (using IBOutlet, IBAction etc.) in a method which shows an alert with the text entered. Essentially I can now capture the entered text within my code.
What I want to do now is to enter this text as a row in the TableView - and I'm sort of lost now amidst controllers and views.
Where does the TableViewController fit into all this? I already have a TableView within this view controller, so how do I interact with it? Should I "somehow" be passing control to a separate TableViewController which I should create and add to my project? Or should I add a TableViewController to this UIViewController? I'm a bit confused.
Any pointers appreciated. You don't need to get into a lot of detail even - just a list of bullets that even say 'do this/do that' will help me go chasing the concepts. Right now I don't know which way to turn.
Thanks a bunch!