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 = @"News";
.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:@"Error" message:@"The download could not complete - please make sure you're connected to either 3G or Wi-Fi." delegate:nil cancelButtonTitle:@"Dismiss" 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:@"MainCell"];
}
cell.textLabel.text = [ objectForKey:@"title"];
cell.detailTextLabel.text = [ objectForKey:@"date"];
return cell;
}
</code></pre>
<p><strong>ViewController.h</strong></p>
<pre><code>#import <UIKit/UIKit.h>
@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>{"status":"ok","count":10,"count_total":662,"pages":67,"posts":[{"id":6176,"type":"post","slug":"how-to-save-any-photo-from-facebook-to-your-iphone-or-ipad-or-ipod-touch","url"...
</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]