views:

28

answers:

2

Is the UITableViewCell subclass used in Apple's native Mail app available anywhere online?

Thanks.

+1  A: 

Certainly not from Apple. Custom UITableViewCell classes are actually relatively simple to put together, and the one in Mail is not especially complex. Here's a great blog post on customizing these cells.

quixoto
It looks a little bit complex for the beginners I guess
vodkhang
A: 

I don't think it is. But that is simple to do with IB. You can open your IB, drag in a new UITableViewCell and then customize it, link it back to the class code. Here is another Blog post that shows you how to do it and how to link it back to your class code

vodkhang