present展示模态透明controller

2019-03-14  本文已影响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抽风

上一篇 下一篇

猜你喜欢

热点阅读