Malcolm Cartney
Malcolm Cartney

Reputation: 65

tableView with interface builder-Cells are empty

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

Answers (1)

Enrico Susatyo
Enrico Susatyo

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

Related Questions