ios - JSON 数据未加载到 UITableView 中

标签 ios objective-c json uitableview

我有一个函数可以 ping ebay 并将 JSON 返回到 iOS 应用程序。我想要做的是用返回的 JSON 填充我的 UITableView。我已经根据我对它应该如何工作的理解来设置代码,但是加载表时没有任何数据。我认为这可能是因为表在返回 JSON 之前加载,但不确定如何解决。

MatchCenterViewController.h

#import <UIKit/UIKit.h>
#import <Parse/Parse.h>
#import "AsyncImageView.h"
#import "SearchViewController.h"

@interface MatchCenterViewController : UIViewController <UITableViewDataSource>

@property (nonatomic) IBOutlet NSString *itemSearch;
@property (nonatomic, strong) NSArray *imageURLs;

@property (strong, nonatomic) NSString *matchingCategoryCondition;
@property (strong, nonatomic) NSString *matchingCategoryLocation;
@property (strong, nonatomic) NSNumber *matchingCategoryMaxPrice;
@property (strong, nonatomic) NSNumber *matchingCategoryMinPrice;


@property (strong, nonatomic) NSArray *matchCenterArray;


@end

MatchCenterViewController.m:

#import "MatchCenterViewController.h"
#import <UIKit/UIKit.h>

@interface MatchCenterViewController () <UITableViewDataSource, UITableViewDelegate>
@property (weak, nonatomic) IBOutlet UITableView *matchCenter;
@end

@implementation MatchCenterViewController



- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{

    [super viewDidLoad];


    //perform search with criteria just submitted
    [PFCloud callFunctionInBackground:@"MatchCenterTest"
                       withParameters:@{
                                        @"test": @"Hi",
                                        }
                                block:^(NSDictionary *result, NSError *error) {




                                    if (!error) {
                                        self.matchCenterArray = [result objectForKey:@"Top 3"];

                                        NSLog(@"Test Result: '%@'", result);
                                    }
                                }];

    self.matchCenterArray = [[NSArray alloc] init];
}

- (void)viewDidAppear:(BOOL)animated
{


    [PFCloud callFunctionInBackground:@"MatchCenterTest"
                       withParameters:@{
                                        @"test": @"Hi",
                                        }
                                block:^(NSDictionary *result, NSError *error) {

                                    if (!error) {
                                        NSLog(@"Test Result: '%@'", result);
                                    }
                                }];



}

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.matchCenterArray count];
}



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


    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    NSDictionary *matchCenterDictionary= [self.matchCenterArray objectAtIndex:indexPath.row];

    cell.textLabel.text = [matchCenterDictionary objectForKey:@"Title"];

    if([matchCenterDictionary objectForKey:@"Price"] != NULL)
    {
        cell.detailTextLabel.text = [NSString stringWithFormat:@"$%@",[matchCenterDictionary   objectForKey:@"Price"]];
    }

    return cell;


}


- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}




/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end

返回的 JSON:

{
    "Top 3" =     (
                {
            "Item 1" =             (
                                {
                    Title = "Apple iPhone 5s (Latest Model) - 16GB - Silver (AT&T) Smartphone";
                },
                                {
                    Price = "400.0";
                },
                                {
                    "Image URL" = "http://thumbs2.ebaystatic.com/m/mewfVG0QbBiu1nZytMuAlZw/140.jpg";
                },
                                {
                    "Item URL" = "http://www.ebay.com/itm/Apple-iPhone-5s-Latest-Model-16GB-Silver-AT-T-Smartphone-/181431570117?pt=Cell_Phones";
                }
            );
        },
                {
            "Item 2" =             (
                                {
                    Title = "Apple iPhone 5c (Latest Model) - 16GB - Pink (Verizon) Smartphone";
                },
                                {
                    Price = "350.0";
                },
                                {
                    "Image URL" = "http://thumbs4.ebaystatic.com/m/mMPAT67KjfCZF9oorbTf3uw/140.jpg";
                },
                                {
                    "Item URL" = "http://www.ebay.com/itm/Apple-iPhone-5c-Latest-Model-16GB-Pink-Verizon-Smartphone-/191204844039?pt=Cell_Phones";
                }
            );
        },
                {
            "Item 3" =             (
                                {
                    Title = "Apple iPhone 5 \U2013 16GB, White, works with Virgin Mobile US \U2013 NEW";
                },
                                {
                    Price = "359.99";
                },
                                {
                    "Image URL" = "http://thumbs3.ebaystatic.com/m/m5x1uj1iSS2fr691tifrvrw/140.jpg";
                },
                                {
                    "Item URL" = "http://www.ebay.com/itm/Apple-iPhone-5-16GB-White-works-Virgin-Mobile-US-NEW-/141227441998?pt=Cell_Phones";
                }
            );
        }
    );
}

enter image description here enter image description here

最佳答案

加载数据后在主线程上重新加载表。

在你的完成 block 中:

[PFCloud callFunctionInBackground:@"MatchCenterTest"
                   withParameters:@{
                                    @"test": @"Hi",
                                    }
                            block:^(NSDictionary *result, NSError *error) {

                                if (!error) {
                                    dispatch_async(dispatch_get_main_queue(), ^{
                                        self.matchCenterArray = [result objectForKey:@"Top 3"];
                                        [matchCenter reloadData];
                                    });
                                    NSLog(@"Test Result: '%@'", result);
                                }
                            }];

Edit1:此外,我建议在一个地方适应您的协议(protocol)。现在,您在头文件中使用 UITableViewDataSource,然后在实现文件中同时使用 UITableViewDataSourceUITableViewDelegate。坚持一个位置以获得最佳实践。


Edit2:根据@Rob 在评论中的建议,重定位行以将 matchCenterArray 内容设置到主线程调度上


Edit3:根据评论,您可以更改 JSON。上面列出的当前结构非常麻烦,所以我建议像这样更简洁(也更容易解析):

    {
    "Top 3" : [
        {
            "Title" : "Apple iPhone 5s (Latest Model) - 16GB - Silver (AT&T) Smartphone",
            "Price" : "400.0",
            "Image URL" : "http://thumbs2.ebaystatic.com/m/mewfVG0QbBiu1nZytMuAlZw/140.jpg",
            "Item URL" : "http://www.ebay.com/itm/Apple-iPhone-5s-Latest-Model-16GB-Silver-AT-T-Smartphone-/181431570117?pt:Cell_Phones"
        },
        {
            "Title" : "Apple iPhone 5c (Latest Model) - 16GB - Pink (Verizon) Smartphone",
            "Price" : "350.0",
            "Image URL" : "http://thumbs4.ebaystatic.com/m/mMPAT67KjfCZF9oorbTf3uw/140.jpg",
            "Item URL" : "http://www.ebay.com/itm/Apple-iPhone-5c-Latest-Model-16GB-Pink-Verizon-Smartphone-/191204844039?pt:Cell_Phones"
        },
        {
            "Title" : "Apple iPhone 5 16GB, White, works with Virgin Mobile US NEW",
            "Price" : "359.99",
            "Image URL" : "http://thumbs3.ebaystatic.com/m/m5x1uj1iSS2fr691tifrvrw/140.jpg",
            "Item URL" : "http://www.ebay.com/itm/Apple-iPhone-5-16GB-White-works-Virgin-Mobile-US-NEW-/141227441998?pt:Cell_Phones"
        }
    ]
}

现在您可以像这样访问您的值:

// In your completion block:
self.matchCenterArray = [result objectForKey:@"Top 3"];

...
[[self.matchCenterArray objectAtIndex:0] objectForKey:@"Title"] // title of the first object
[[self.matchCenterArray objectAtIndex:2] objectForKey:@"Image URL"] // image URL of the last item

关于ios - JSON 数据未加载到 UITableView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24089715/

相关文章:

iphone - 如何更改 ui 导航 Controller 后退按钮操作

ios - 从右向左滑动时未调用 UISplitViewControllerDelegate/UIPopoverDelegate 方法

sql - 在 PostgreSQL 中更新 JSON 列中的字段

javascript - 为什么 JSON 不接受我的 PHP 变量?

java - 使用图形 API 获取用户相册中的照片的链接是什么?

javascript - 链接到 Cordova 应用程序中的评论页面

ios - 将 iOS 7 SDK 与 llvm-gcc-4.2 一起使用

ios - 如何使您的应用程序在 UIActivityViewcontroller 列出的事件中可用

ios - 展开可选值时发现 nil

objective-c - 创建变量更改通知