i would like to know how to build a screen that looks exactly like the About screen on iPhone.
I would like to display information in such format.. its so clean..
any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Erm all it is is a grouped type UITableView which is pretty easy to create. Create it in Interface Builder and choose “Grouped” as the Type & connect it up with your class or create it programatically:
Example:
Then, you’ll need to define the
.accessoryViewproperty in- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath. Let’s for example create a switch as the cells accessoryView:and voila, the switch will be its subview. If you just want text, like in your question, just create a UILabel as I created the Switch.