iPhone : form like new contact

后端 未结 7 643
走了就别回头了
走了就别回头了 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:28

    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];
    
    0 讨论(0)
提交回复
热议问题