iPhone : form like new contact

后端 未结 7 683
走了就别回头了
走了就别回头了 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];
    

提交回复
热议问题