uiwebview 不适用于 HTTP 或 HTTPS 网址
uiwebview not working with HTTP or HTTPS urls
我正在尝试在 xcode 的 uiwebview 中加载一个 url,它加载得很好,但问题是用户与它的交互为零。我无法触摸它上面的任何按钮,甚至无法滚动它。我已经在 info.plist 中尝试过 Allow Arbitrary Loads = YES
但我的代码没有发生任何事情。
[webPage setDelegate:self];
[webPage loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://url.com"]]];
[webPage addSubview:activityIndicatorView];
这里有更多来自 .h 的代码:
@interface ViewController : UIViewController<UIWebViewDelegate>{
IBOutlet UIWebView *webPage;
}
@property (retain, nonatomic) IBOutlet UIWebView *webPage;
它是简单的 uiviewcontroller 中来自界面构建器的简单 uiwbview。
这是我的 info.plist
我发现问题可能出在这部分代码中。我的 uinavigationbar 中也有一个正在加载 xml 菜单的菜单。等等,我会 post 我的代码。
- (void) makeMenu{
@try {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH,0),^{
NSURL *url=[NSURL URLWithString:@"http://url/xml-menu.php"];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
NSError *error = nil;
NSHTTPURLResponse *response = nil;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if ([response statusCode] >=200 && [response statusCode] <300)
{
rssOutputData = [[NSMutableArray alloc]init];
xmlParserObject =[[NSXMLParser alloc]initWithData:urlData];
[xmlParserObject setDelegate:self];
[xmlParserObject parse];
}
dispatch_async(dispatch_get_main_queue(), ^{
sideMenu.delegate = self;
NSInteger count;
NSMutableArray *itemsArry = [[NSMutableArray alloc] init];
count = [rssOutputData count];
for (int i = 0; i < count; i++){
BTSimpleMenuItem *item = [[BTSimpleMenuItem alloc]initWithTitle:[[rssOutputData objectAtIndex:i]xmltitle] image:[UIImage imageNamed:@"arrow.png"]
onCompletion:^(BOOL success, BTSimpleMenuItem *item) {
[webPage loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[[rssOutputData objectAtIndex:i]xmllink]]]];
}];
[itemsArry addObject:item];
}
NSArray *itemSarry=[[NSArray alloc] initWithArray:itemsArry];
sideMenu = [[BTSimpleSideMenu alloc]initWithItem:itemSarry addToViewController:self];
});
});
}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
}
当我在 viewdidload uiwebview 中调用此方法时停止响应。如果我不调用这部分 uiwebview 就可以正常工作。请帮助我,我也需要这个菜单。
试试这个:
webPage.userInteractionEnabled = YES;
我正在尝试在 xcode 的 uiwebview 中加载一个 url,它加载得很好,但问题是用户与它的交互为零。我无法触摸它上面的任何按钮,甚至无法滚动它。我已经在 info.plist 中尝试过 Allow Arbitrary Loads = YES
但我的代码没有发生任何事情。
[webPage setDelegate:self];
[webPage loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://url.com"]]];
[webPage addSubview:activityIndicatorView];
这里有更多来自 .h 的代码:
@interface ViewController : UIViewController<UIWebViewDelegate>{
IBOutlet UIWebView *webPage;
}
@property (retain, nonatomic) IBOutlet UIWebView *webPage;
它是简单的 uiviewcontroller 中来自界面构建器的简单 uiwbview。 这是我的 info.plist
我发现问题可能出在这部分代码中。我的 uinavigationbar 中也有一个正在加载 xml 菜单的菜单。等等,我会 post 我的代码。
- (void) makeMenu{
@try {
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH,0),^{
NSURL *url=[NSURL URLWithString:@"http://url/xml-menu.php"];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
NSError *error = nil;
NSHTTPURLResponse *response = nil;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if ([response statusCode] >=200 && [response statusCode] <300)
{
rssOutputData = [[NSMutableArray alloc]init];
xmlParserObject =[[NSXMLParser alloc]initWithData:urlData];
[xmlParserObject setDelegate:self];
[xmlParserObject parse];
}
dispatch_async(dispatch_get_main_queue(), ^{
sideMenu.delegate = self;
NSInteger count;
NSMutableArray *itemsArry = [[NSMutableArray alloc] init];
count = [rssOutputData count];
for (int i = 0; i < count; i++){
BTSimpleMenuItem *item = [[BTSimpleMenuItem alloc]initWithTitle:[[rssOutputData objectAtIndex:i]xmltitle] image:[UIImage imageNamed:@"arrow.png"]
onCompletion:^(BOOL success, BTSimpleMenuItem *item) {
[webPage loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[[rssOutputData objectAtIndex:i]xmllink]]]];
}];
[itemsArry addObject:item];
}
NSArray *itemSarry=[[NSArray alloc] initWithArray:itemsArry];
sideMenu = [[BTSimpleSideMenu alloc]initWithItem:itemSarry addToViewController:self];
});
});
}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
}
当我在 viewdidload uiwebview 中调用此方法时停止响应。如果我不调用这部分 uiwebview 就可以正常工作。请帮助我,我也需要这个菜单。
试试这个:
webPage.userInteractionEnabled = YES;