Reputation: 41
I'm currently working on an app where we have to collect user details. I would like to build UITable view similar to the contacts app's edit mode view. (ImageView in one column and firstname, lastname and other fields are in other column)
I've looked at different codes and samples..Have no idea how they build it.
Upvotes: 1
Views: 741
Reputation: 20993
It is likely a view built something like this...
The green box is where your UIImageView sits. The red box is a UITableView sized to fit alongside the image. The Blue box is another UITableView for the rest of the content. Positioning the blue box will be based on how tall the red box is based on what fields are displayed there.
Upvotes: 3