I would like to create a separator line like this one:
Any idea about how to implement it?
I tried getting an image of the line and using UIAppearance
proxy objects:
[[UITableView appearanceWhenContainedIn:[MyController class], nil] setSeparatorColor:
[UIColor colorWithPatternImage:[UIImage imageNamed:@"line.png"]]];
[[UITableView appearanceWhenContainedIn:[MyController class], nil] setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];
but,somehow, only the black line gets rendered.