1

初めて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

何が起こっているのか誰が知っていますか?

4

1 に答える 1

0

私はそれを修正しました、私のxibファイルは800kを持っています、私もそれを作る方法を知りません。

<object class="NSColor" key="IBUINormalTitleColor">
 <int key="NSColorSpace">1</int> 
     <bytes>.................
</object>
于 2012-08-25T16:26:35.487 に答える