ios - UITableViewCell Separator not Appearing -
i have uitableview in custom vc pushed onto custom navigation controller stack. custom navigation controller has following code:
- (void)viewwilllayoutsubviews{ [super viewwilllayoutsubviews]; self.view.superview.bounds = cgrectmake(0, 0,335, 657); } the problem is, separator lines between cells not appear. if remove bounds line, appear. can change bounds , have separators show?
calling viewwilllayoutsubviews after changing bounds no either.
if understand correctly, setting bounds of navigation controller's view, should never do. suggest refactoring in way allows navigation controller manage own view , frame of child view controllers' views.
Comments
Post a Comment