所以我在一个.m文件中实现了一个UIWebView,在另一个文件中实现了一个UITableView。当用户单击UITableView元素时,将显示UIWebView。问题是我必须根据UITableView的行号设置UIWebView的内容(本地文本和图像)。我知道如何做到这一点,但这当然必须使用UITableView实现,但它也需要UIWebView。
只是导入UIWebView实现无效。
提前致谢!
答案 0 :(得分:0)
请参阅此链接以设置代理人here
在didSelectRowAtIndexpath
中 NSString *name=@"content of table";
myAppDelegate *appDelegate = (myAppDelegate *) [[UIApplication sharedApplication] delegate];
[appDelegate setCurrentTitle:name];
PictureWebViewController *webview = [[PictureWebViewController alloc] initWithNibName:@"PictureWebViewController" bundle:nil];
[self.navigationController pushViewController:email animated:YES];
PictureWebViewController是你的webview的一个类。
在viewdidload方法的那个类中,获取标题为
myAppDelegate *appDelegate = (myAppDelegate *) [[UIApplication sharedApplication] delegate];
NSString *name= [appDelegate getCurrentTitle];
使用此课程中的名称在webview中显示内容。
所有最好的