菜鸟教程小白 发表于 2022-12-12 11:58:28

ios - 解析 rss 提要并将字符串附加到链接 - objective-c


                                            <p><p>我正在开发一个项目,该项目为每篇文章的标题、描述和链接解析一个 rss 提要。然后我需要在链接后面附加一个字符串 @"?f=m"
我很难弄清楚从哪里开始。我是IOS编程的新手。我认为我需要操作的文件在这里:</p>

<pre><code>-(void)viewDidAppear:(BOOL)animated
{

RSSItem* item = (RSSItem*)self.detailItem;
self.title = item.title;
webView.delegate = self;

NSURLRequest* articleRequest = ;


webView.backgroundColor = ;
;
}
</code></pre>

<p>但它也可能在这里:</p>

<pre><code>-(void)fetchRssWithURL:(NSURL*)url complete:(RSSLoaderCompleteBlock)c
{


dispatch_async(kBgQueue, ^{

    //work in the background
    RXMLElement *rss = ;
    RXMLElement* title = [ child:@&#34;title&#34;];
    NSArray* items = [ children:@&#34;item&#34;];

    NSMutableArray* result = ;

    //more code
    for (RXMLElement *e in items) {

      //iterate over the articles
      RSSItem* item = [ init];
      item.title = [ text];
      item.description = [ text];
      item.link = text ]] ;
      ;
    }

    c(, result);
});

}
</code></pre>

<p>真诚感谢任何帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您只需将参数附加如下:</p>

<pre><code>NSString *modifiedString = ,@&#34;?f=m&#34;];
NSURL *modifiedUrl = ;
</code></pre>

<p>现在使用 modifiedUrl 代替 <strong>item.link</strong></p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 解析 rss 提要并将字符串附加到链接 -objective-c ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17310966/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17310966/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 解析 rss 提要并将字符串附加到链接 - objective-c