- (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抽风
网友评论