I have some questions about the Apple iPhone Contact App. I want to use the same methode to create and modify information.
Here's two pics :
alt text http://grab.by/4ZjQ alt text http://grab.by/4ZjR
So we have the creation and the edition. The form looks like an UITableView with a groupedStyle but I don't know how to re-creat all of this. Have you got an idea or a tutorial that might explain how to do it ?
Thanks a lot !
the top bit is a UIView with a UIImageView and a UITableView, this view is set as the header of the overall UITableView.
As for the editing, you need to swap out the UILabel, with a UITextField, which has the same frame, and font-size. move the content from one view to another.
Create a UIView that is a line, then add it as a subview to the cell
//in cellForRowAtIndexPath
UIView *lineView = [[UIView alloc]initWithFrame:CGRectMake(80,0,1,44)];
lineView.backgroundColor = [UIColor lightGreyColor];
[cell addSubview:lineView];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With