Justin
Justin

Reputation: 2999

The correct way to user custom UITableViewCells

I have seen a lot of different ways of implementing custom cells in a table view. Like different file owners, get it from bundle and call the the latest obj of the array and a lot more.

But all did not feel right.

What is the best and correct way to create and use custom table view cells (with interface builder).

Upvotes: 2

Views: 248

Answers (2)

Norman
Norman

Reputation: 453

I think Storyboards are the new proper way. I use this method:

http://iphonedevelopment.blogspot.com/2009/09/table-view-cells-in-interface-builder.html

And it works quite well. I think it's somewhat proper in that you are asking the OS to do most of the work, although it's a little sneaky that the cell is assigned to a property as part of the NIB loading as a side effect.

Upvotes: 2

dasdom
dasdom

Reputation: 14063

Had the same problem. For me it is now solved with storyboards in ios5.

Upvotes: 0

Related Questions