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

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -