iPhone : form like new contact

后端 未结 7 642
走了就别回头了
走了就别回头了 2020-12-24 08:41

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

相关标签:
7条回答
  • 2020-12-24 09:13

    Customizing the UITableview is definitely the way to go. To make it a little simpler on yourself, you may want to check out the Sensible Tableview, which makes all of this much easier to implement: http://thenextweb.com/dd/2011/04/12/an-ios-developers-dream-sensible-tableview/?awesm=tnw.to_17mDs

    0 讨论(0)
  • 2020-12-24 09:13

    check out these links.. they are about customizing uitableviews and are rather detailed.

    http://www.e-string.com/content/custom-uitableviewcells-interface-builder

    http://www.galloway.me.uk/tutorials/custom-uitableviewcell/

    0 讨论(0)
  • 2020-12-24 09:16

    I'm trying to develop something like this and imagining it. In my opinion, if you look closely, the screen seems to be composed of a vertical UIScrollView. This component will hold a UITableView with multiple sections or maybe even several UITableView components. When focusing textfields on cells, the UIScrollview scrolls the content to place the selected textfield in a more suitable/balanced .y position, for viewing and editing.

    0 讨论(0)
  • 2020-12-24 09:20

    No need to create your own table view. The address book framework creates absolutely all of this and will even add contacts to the iPhone's address book too.

    0 讨论(0)
  • 2020-12-24 09:21

    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.

    0 讨论(0)
  • 2020-12-24 09:23

    It can be accomplished by customizing table views. Use the custom cells based on the section for the table view.

    0 讨论(0)
提交回复
热议问题