So, I’ve tried looking all around for information on how to recreate a UILabel (ideally, or a UITextField) with a title (for lack of better work).
Since it’s quite hard to explain (half the reason I couldn’t find what I was looking for) I’ve attached an image from the Facebook App.
How would I go about creating labels like this? Either single, or multiple?
Sorry for the simple question, still new to iPhone development.

If you’re doing it in a
UITableViewlike the one shown in your capture, you can use theUITableViewCell textLabelproperty to display a standard left aligned label. Then you only add theUITextFieldto the cell.I’ve done exactly this in an app, it looks good and is pretty simple.
UPDATE:
Something like this (untested, may have some typos):
UPDATE2: UITextField wasn’t added to UITableCellView.