美文网首页
解决使用[self.navigationController p

解决使用[self.navigationController p

作者: 混不吝丶 | 来源:发表于2016-06-25 15:33 被阅读1367次

例 1

UIViewController *vc = [UIViewController new];

[self.navigationController pushViewController:vc animated:YES];

上述代码推出界面会卡顿

解决办法:

UIViewController *vc = [UIViewController new];

vc.view.backgroundColor = [UIColor 推出时你想要的控制器View的颜色]

/**

*  如

*/

vc.view.backgroundColor = [UIColor whiteColor];

[self.navigationController pushViewController:vc animated:YES];

相关文章

网友评论

      本文标题:解决使用[self.navigationController p

      本文链接:https://www.haomeiwen.com/subject/jlquhttx.html