We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UIActivityViewController` *actContr = [[UIActivityViewController alloc] initWithActivityItems:@[screenImage] applicationActivities:nil]; [self presentViewController:actContr animated:YES completion:nil];
系统原生分享,选择短信Message,Present MFMessageComposeViewController 的时候,导航栏被遮盖,导致 cancel 按钮无法点击 dismiss。 找了很久,发现当屏蔽 如下的 method 交换,恢复正常,求这个问题该如何解决?
@implementation UINavigationController (FDFullscreenPopGesture) + (void)load{ SEL originalSelector = @selector(pushViewController:animated:); SEL swizzledSelector = @selector(fd_pushViewController:animated:); ........ }
The text was updated successfully, but these errors were encountered:
MFMessageComposeViewController *messageComposeVC = [[MFMessageComposeViewController alloc] init]; UIViewController *rootViewController = messageComposeVC.viewControllers.firstObject; rootViewController.fd_prefersNavigationBarHidden = YES;
Sorry, something went wrong.
试了一下午,原来是这个库的问题!!
No branches or pull requests
系统原生分享,选择短信Message,Present MFMessageComposeViewController 的时候,导航栏被遮盖,导致 cancel 按钮无法点击 dismiss。
找了很久,发现当屏蔽 如下的 method 交换,恢复正常,求这个问题该如何解决?
The text was updated successfully, but these errors were encountered: