When I launch the app, a VC, that associated with 0 number Cell in Table View, appears. How can I change it to 3rd VC for example?
Asked
Active
Viewed 76 times
0
-
1Welcome to StackOverflow. It is a professional Q & A site. Please visit [ask] a question. – afzalex Oct 10 '14 at 23:51
1 Answers
0
MainVC.m override the following in MainVC.m
- (NSIndexPath *)initialIndexPathForLeftMenu;
(NSIndexPath *)initialIndexPathForRightMenu;
- (NSIndexPath *)initialIndexPathForRightMenu { return [NSIndexPath indexPathForRow:2 inSection:0]; }
use : ( if using left)
- (NSIndexPath *)initialIndexPathForLeftMenu
{
return [NSIndexPath indexPathForRow:2 inSection:0];
}

user3576382
- 31
- 5