I'm extremely new to objective-c and iOS development and was just looking for advice at how best to tackle this type of styling. Basically these types of field sets开发者_Go百科 (see screenshot) appear everywhere with rounded edges and borders between rows.
Is there some type of functionality in interface builder to handle this already or would I be looking at using background image(s) and then adding the form parts above that?
iOS objective-c iphone fieldset styling rounded edges rows
That's a UITableView
. They are a major interface element (maybe the major element) in iPhone apps. You can set up a table view to have rows that act like buttons, or information-entry fields, as here, or really in any way that you care to write the code for. See the Programming Guide for discussion of their use.
精彩评论