How to achieve columns for tableview cells like in iPhone Contacts App - Add New Contact View?
Please refer to the screenshot below
I am Assuming the "Add new contact" screen in iPhone contacts app had a UITableView. For adding phone numbers or email or home page, they have nicely formatted columns within the rows. How can I achieve this, since UITableView inherently does not support columns? Are these just custom UITableViewCell implemented on scroll开发者_运维百科 view? The mystery is killing me ... please help :)
Thanks, Dev.
My guess is that they are a couple of UITableView's all positioned on a UIScrollView. The edit button on top of the page, will probably trigger the edit mode on all UITableView's in this view.
If that "Add Photo" button wasn't there, you could solve this all with 1 UITableView by the way.
精彩评论