Slow performance for presentViewController - depends on complexity of presentING controller?

前端 未结 5 1676
有刺的猬
有刺的猬 2021-02-04 02:30

I am presenting a view controller:

SCAAboutController2 *controller = [[SCAAboutController2 alloc] initWithNibName:nil bundle:nil];
UINavigationController *navCon         


        
5条回答
  •  忘掉有多难
    2021-02-04 03:02

    Not sure this was the original author's problem but here is something that solved a similar problem for me: I was trying to present a view from didSelectRowAtIndexPath and I had to call deselectRowAtIndexPath before. If this may help someone...

提交回复
热议问题