美文网首页Bug(代码)
关于push到新页面时候出现画面重叠的问题

关于push到新页面时候出现画面重叠的问题

作者: IceWall_Rin | 来源:发表于2016-06-30 18:12 被阅读24次

    -(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];

    }

    相关文章

      网友评论

        本文标题:关于push到新页面时候出现画面重叠的问题

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