-
Notifications
You must be signed in to change notification settings - Fork 134
Closed
Labels
Description
代码如下:
AXWebViewController *webVC = [[AXWebViewController alloc] initWithAddress:@"http://www.baidu.com"];
webVC.showsToolBar = NO;
webVC.webView.allowsLinkPreview = YES;
UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:webVC];
self.window = [[UIWindow alloc] init];
self.window.backgroundColor = [UIColor whiteColor];
self.window.frame = [UIScreen mainScreen].bounds;
self.window.rootViewController = nav;
这样的话 里面的关闭 是不起作用的,望指教!!谢谢