0

I am using MGTwitterEngine for my iphone application. I instantiated a TwitterEngine object call some Twitter API function (like getting Status). The problem is: I am getting parsed dictionary object at the delegate method after some time where my table view is set already. How can I refresh the table view or how I can make sure that I have the data before table view is loaded?

Chris Hanson
  • 54,380
  • 8
  • 73
  • 102
fatih
  • 1,171
  • 2
  • 14
  • 26

1 Answers1

2
[myTableView reloadData];

This will reload myTableView. After getting the data update your data source for the table view and send reloadData message to the table view. It will be refreshed.

taskinoor
  • 45,586
  • 12
  • 116
  • 142