初めてpushViewControllerを使用すると、速度が非常に遅くなり(インターフェイスが中断されたアニメーション)、2回目は通常の速度になります。
コントローラー:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
B *b = [[B alloc] init];//xib which the content is very less
[self.navigationController pushViewController:b animated:YES];
[b release];
NSLog(@"yes\n");
}
Bコントローラー:
-(void)viewDidLoad
{
[super viewDidLoad];
//i have deleted all code
}
//-(void)viewWillAppear.....
主要:
//https://github.com/ipup/PPRevealSideViewController
A* a = [[A alloc] init];
UINavigationController* n = [[UINavigationController alloc] initWithRootViewController:a];
PPRevealSideViewController* revealSideViewController = [[PPRevealSideViewController alloc] initWithRootViewController:n];
//tabbar add revealSideViewController
何が起こっているのか誰が知っていますか?