0

I want to reabuild the email-app one to one for a private-message system.

I am working at the moment on the email-overview-screen.

enter image description here

Now I have a ViewController for this with a UITableView and a UINavigationBar on it.

2 simple questions:

  1. How do I get more then one line in the cell, specificly 2-4 different font-types (bold / not bold / blue) exactly rebuilded as seen in the link above?
  2. How do I can add a PullDown-Refresh functionality? (You know, this pull down, oh refrash, thing, emails have)
Abizern
  • 146,289
  • 39
  • 203
  • 257
PassionateDeveloper
  • 14,558
  • 34
  • 107
  • 176

1 Answers1

0
  1. Use a custom cell, you can put in whatever information and links and styles as you want. You can even use UIWebViews as the cells, which could make styling and links easier.
  2. Many examples of this have a look at the answers to this SO question.
Community
  • 1
  • 1
Abizern
  • 146,289
  • 39
  • 203
  • 257
  • Apple does not recommend `UIWebViews` in `UITableViewCell`s, because of too much overhead. Better to go with styled `UILabel`s. – Mundi Aug 12 '11 at 19:34