mohan
mohan

Reputation: 41

UITableView like contacts Apps edit mode

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.

Example contacts app editing view

Upvotes: 1

Views: 741

Answers (1)

Chris Wagner
Chris Wagner

Reputation: 20993

It is likely a view built something like this...

Figure A

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

Related Questions