views:

13

answers:

1

I did like following

tableview.separatorStyle = UITableViewCellSeparatorStyleNone;

However, when I add new row , separator will appear like following picture. alt text

How to remove separator in UITableViewCell ?

A: 

I got it

UIView *backView = [[UIView alloc] initWithFrame:CGRectZero];
backView.backgroundColor = [UIColor clearColor];
tableview.backgroundView = backView;
[backView release];
saturngod