菜鸟教程小白 发表于 2022-12-13 00:04:44

objective-c - 在 iOS 上将 Wordpress JSON 解析为 UITableView


                                            <p><p>我正在尝试解析来自 <a href="http://www.karthikk.net/?json=1" rel="noreferrer noopener nofollow">this URL</a> 的 JSON ,这是来自 Wordpress 的 JSON 输出。由于某种原因,UITableView 中没有输出。</p>

<p>这是我必须解析的代码。我确定我错过了一些东西,但我无法弄清楚如何在这段代码中解析嵌套的 JSON。 </p>

<p><strong>ViewController.m:</strong></p>

<pre><code>    - (void)viewDidLoad
{
    ;
    self.title = @&#34;News&#34;;

    .networkActivityIndicatorVisible = YES;

    NSURL *url = ;
    NSURLRequest *request = ;
    [ initWithRequest:request delegate:self];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
    data = [ init];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)theData
{
    ;
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    .networkActivityIndicatorVisible = NO;

    news = ;
    ;
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
    UIAlertView *errorView = [ initWithTitle:@&#34;Error&#34; message:@&#34;The download could not complete - please make sure you&#39;re connected to either 3G or Wi-Fi.&#34; delegate:nil cancelButtonTitle:@&#34;Dismiss&#34; otherButtonTitles:nil];
    ;
    .networkActivityIndicatorVisible = NO;
}

- (int)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (int)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return ;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = ;

    if(cell == nil){
      cell = [ initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@&#34;MainCell&#34;];
    }

    cell.textLabel.text = [ objectForKey:@&#34;title&#34;];
    cell.detailTextLabel.text = [ objectForKey:@&#34;date&#34;];

    return cell;
}
</code></pre>

<p><strong>ViewController.h</strong></p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;

@interface ViewController : UIViewController {
    IBOutlet UITableView *mainTableView;

    NSArray *news;
    NSMutableData *data;
}

@end
</code></pre>

<p>请帮我解决这个问题。 </p>

<p>非常感谢!我试过在 Stackoverflow 上引用多个线程,但都没有为我工作。</p>

<p><strong>P.S.:</strong>我是 iOS 应用开发的新手。我正在使用 <a href="http://www.youtube.com/watch?v=RJZcD3hfs3k" rel="noreferrer noopener nofollow">this Video tutorial</a>乱码。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我明白问题所在了。新闻对象是一个 <code>Dictionary</code> ,它有几个键值对,其中一个是实际包含 <code>Array</code> 的帖子,你想用它来填充你的 <code>TableView</code>。 </p>

<p>这是您的 <code>JSON</code> 响应的第一部分:</p>

<pre><code>{&#34;status&#34;:&#34;ok&#34;,&#34;count&#34;:10,&#34;count_total&#34;:662,&#34;pages&#34;:67,&#34;posts&#34;:[{&#34;id&#34;:6176,&#34;type&#34;:&#34;post&#34;,&#34;slug&#34;:&#34;how-to-save-any-photo-from-facebook-to-your-iphone-or-ipad-or-ipod-touch&#34;,&#34;url&#34;...
</code></pre>

<p>当您在 <code>JSON</code> 响应中看到表示 <code>Dictionary</code> 的 { 时,[ 表示 <code>Array</code>。 <code>TableViews</code> 通常由 <code>Array</code> 填充。所以你可以看到你有一个 <code>Dictionary</code> 的 <code>JSON</code> 响应,其中有几个键值对,其中一个是 <code>Array</code> 的 <code> >字典</code>的</p>

<p>您需要为新闻对象分配该字典键的内容:</p>

<pre><code>- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    .networkActivityIndicatorVisible = NO;
    NSDictionary *responseDict = ;
    news = ;
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 在 iOS 上将 Wordpress JSON 解析为 UITableView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13994032/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13994032/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 在 iOS 上将 Wordpress JSON 解析为 UITableView