我在我的应用中使用此http://imthi.com/blog/programming/iphone-rss-reader-application-with-source-code.php作为我的RSS阅读器的开头来加载新闻。我试图在你选择一个单元格行时获取它,它在safari中打开链接而不是另一个viewcontroller。我还在学习如何为iPhone开发。这就是打开我想在Safari中打开的新视图,它可能很简单但是因为我是新手,所以我无法理解它。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[[self appDelegate] setCurrentlySelectedBlogItem:[[[self rssParser]rssItems]objectAtIndex:indexPath.row]];
[self.appDelegate loadNewsDetails];
}
提前感谢您的帮助。
答案 0 :(得分:1)
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@“RSS URL”]];