Reputation: 65
I made w tableView Controller with interface builder , i made few cell's set it to basic and define some text into each cell, but when i start my app, cell's are empty?
Upvotes: 0
Views: 41
Reputation: 19800
You need to set your table view's delegate and data source.
In the data source methods you can specify the number of cells, etc.
Read Apple's Table View Programming guide.
Upvotes: 1