美文网首页
present展示模态透明controller

present展示模态透明controller

作者: 独孤流 | 来源:发表于2019-03-14 16:56 被阅读0次
- (void)showAlphaFrom:(UIViewController *)fromVC toVC:(UIViewController *)toVC{
    fromVC.definesPresentationContext = YES;
    toVC.view.backgroundColor = [UIColor colorWithRed:154/255.0 green:155/255.0 blue:157/255.0 alpha:.4];
    toVC.modalPresentationStyle = UIModalPresentationOverCurrentContext;
    [fromVC presentViewController:askRoadVC animated:NO completion:nil];

}

在Xcode10.1 上,使用xib创建的Controller,发现使用这种方式没有加载到xib里的内容,原因是xib的内容我从其他之前版本的xcode创建的storyboard里复制的,解决办法就是删除xib里的内容,全部用xcode直接在拖一遍,感觉完全就是xcode抽风

相关文章

网友评论

      本文标题:present展示模态透明controller

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