我从网络服务中获得了 n 个网址。在选择 didSelectRowAtIndexPath 时,我需要显示该特定文件的 url。请注意,每一行都有不同的 url。我将 url 存储在 SaveDisplay 类中,并且 SaveDisplay.m 类具有以下代码
导入“SaveDisplay.h”
@implementation SaveDisplay
@synthesize buttonName;
@synthesize urlForLoad;
- (id) initWithButtonName:(NSString *)_buttonName withUrlForLoad:(NSString *)_urlForLoad
{
self = [super init];
if(self)
{
self -> buttonName = _buttonName;
self -> urlForLoad = _urlForLoad;
}
return self;
}
@end
这是我正在尝试的,但我需要一种正确的方法来循环它并为各个文件设置一个 url
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SaveDisplay *objectForUrl = [[SaveDisplay alloc] init];
WebViewController *webController = [[WebViewController alloc] initWithNibName:@"WebViewController" bundle:Nil];
webController.urlToLoad = objectForUrl.urlForLoad;
[self.navigationController pushViewController:webController animated:YES];
}