feed://... 在我的 UIWebView 中
我想在 UIWebView 中打开 RSS Feed,但它无法正常工作并无法打开 Safari。 我的代码:
NSString *link = [[NSString alloc] initWithFormat:@"feed://smartfiction.disqus.com/%@/latest.rss", slug];
NSURL *url = [NSURL URLWithString:link];
NSURLRequest *requestWeb = [NSURLRequest requestWithURL:url];
[webViewComment loadRequest:requestWeb];
我找到了正确的方法。我已经创建了 rss 解析器并在 UITableView 中显示提要。它更加美丽和容易。
I want to open RSS Feed in my UIWebView, but it isn't working and opening Safari.
My code:
NSString *link = [[NSString alloc] initWithFormat:@"feed://smartfiction.disqus.com/%@/latest.rss", slug];
NSURL *url = [NSURL URLWithString:link];
NSURLRequest *requestWeb = [NSURLRequest requestWithURL:url];
[webViewComment loadRequest:requestWeb];
I found right way. I have created rss parser and showed feed in UITableView. It's more beautiful and easy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
feed:// 是一个由 Safari 处理的 URL 方案,因此只能由 Safari 打开...您可以尝试:
feed:// is a URL Scheme which is handled by Safari and so will only be opened by Safari... you could try :