I am having a problem handling rotation in a view controller.
When the top image and phone are rotated, it adapts correctly.
When the view controller is displayed on top and the device is rotated, the view controller in it is not fully updated to rotate when the user returns. The biggest problem I am facing is that the separator lines do not expand to fill the entire width.
Example:

I uploaded my test project to GitHub ; you can clone it from https://github.com/tewha/ResizeOnRotate.git .
. , . , ?
Edit:
, :
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
UITableViewCellSeparatorStyle separatorStyle = self.tableView.separatorStyle;
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
self.tableView.separatorStyle = separatorStyle;
}