我是iPhone新手,我想在用戶點擊特定行(Google,Facebook,Yahoo)時根據URL移動到UIWebview
。我希望頁面重定向到UIWebview。如何重定向UIWebview?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
SBJsonParser *parser = [[SBJsonParser alloc] init];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"URL"]];
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *json_string = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
statuses = [parser objectWithString:json_string error:nil];
if (indexPath.row == 0) {
//What do i write in here
} else if(indexPath.row == 1) {
} else if(indexPath.row == 2) {
} else {
}
}
任何人都可以幫我嗎?
UIWebView是否由相同的視圖控制器控制?如果不是,則應該對另一個管理UIWebView的ViewController執行segue,並在其中傳遞鏈接。 – FreeNickname 2013-04-11 08:23:30
你能告訴我一些示例代碼嗎? – user2264731 2013-04-11 08:29:41