2018-11-03tip-present一个透明VC
2018-11-03 本文已影响0人
Life淡淡
XLNewCommentViewController *vc = [[XLNewCommentViewController alloc] initWithCallback:^{
}];
self.definesPresentationContext = YES;
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.modalPresentationStyle = UIModalPresentationOverCurrentContext;
[self.navigationController presentViewController:nav animated:false completion:^{
}];