views:

87

answers:

1

In the settings on the iphone, there is text between some of the UITableView sections. Sometimes larger text, sometimes smaller text. How do I do this?

Safari

I would like to know how to do the "Security" text, as well as the "Warn when visiting fraudulent websites." text.

Ideas?

+1  A: 

They are section headers and footers. You can set them in table view datasource tableView:titleForHeaderInSection: and tableView:titleForFooterInSection: methods

Vladimir
Yes! Thank you!
Nic Hubbard