iphone - iOS Tableviewcell separators looks weird -
i using uitabelviewcontroller , static cells in ios 7.1. seeing desired separator in storyboard, not in simulator. drives me crazy.
storyboard screenshot

simulator screenshot

i don't want white line before separator inset. still need separator way showing in storyboard screenshot. how remove white line? appreciated.
i set black color tableview background. still no improvement. cells static , custom cells.
thanks other answers here. found out causes bug.
- (void)tableview:(uitableview *)tableview willdisplaycell:(uitableviewcell *)cell forrowatindexpath:(nsindexpath *)indexpath { [cell setbackgroundcolor:[uicolor clearcolor]]; } here bug described in ios 7 versions. https://stackoverflow.com/a/18878259/1083859
Comments
Post a Comment