XLNewCommentViewController *vc = [[XLNewCommentViewController alloc] initWithCallback:^{
}];
self.definesPresentationContext = YES;
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.modalPresentationStyle = UIModalPresentationOverCurrentContext;
[self.navigationController presentViewController:nav animated:false completion:^{
}];
网友评论