I am new to App Development. I have a tab controller, where 3 views are attached. I would like to create a 4th tab, and provide the text view, where I would like to append/display the messages that are generated by other tab views.
Like NSLog(@"...");
I would like my own logger:
myLogger@("...");
-> Updates the UITextView
of the 4th Tab.
Kindly provide some idea?