关于push到新页面时候出现画面重叠的问题
2016-06-30 本文已影响24人
IceWall_Rin
-(IBAction)onClickButton:(id)sender
{
UIViewController* detail = [[UIViewController alloc] init];
[self.navigationController pushViewController:detail animated:YES];
}
这段非常简单的代码,看似没有问题,在ios7以上运行却发现在push一半的时候会卡顿一下,这是由于UIViewController是一个空的,背景色为透明的导致的。
下面的就没有问题了:
-(IBAction)onClickButton:(id)sender
{
UIViewController* detail = [[UIViewController alloc] init];
[detail.view setBackgroundColor:[UIColor whiteColor]];
[self.navigationController pushViewController:detail animated:YES];
}