I googled and searched in stackoverflow.com but couldn\'t get rid of this situation, how can i populate TableView with the responce of a GET. I send the GET and parse the respon
You have several issues I found just by taking a quick look:
1. You have an instance of UITableViewController. The proper initialization for a UITableViewController is initWithStyle:
Use that instead. Otherwise you need to do some extra work, and it's really not needed.
2. You are checking the strings from the buttons in your UIAlertView
instance. My recommandation is not to do that. Strings are somehow volatile. Multi language can be inserted as a feature and you can have issues after that. Check the index instead. It's a simple int, not headaches alert !
3. You have setted your NSMutableArray
as a property in your messages
class. Why don't you populate it. That's why the information isn't appearing in your table: because you are not providing it to the specific class.
From the controller you are initializing the controller (class that contains the table view), provide its content from the original controller.
Advices: 4. For standardization, name your classes with capital letters and your variables with small ones. Constants should begin with "k" letter.