简体   繁体   English

为什么我的JSON数组不显示在UITableView对象中?

[英]Why won't my JSON array display in a UITableView object?

Here's my code: 这是我的代码:

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.domain.com/venues.php"]];
    NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];

    NSError *error = nil;
    NSArray *responseArray = [NSJSONSerialization JSONObjectWithData:response options:0 error:&error];
    NSLog(@"%@", responseArray); // This logs fine
}

@synthesize responseArray;

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return 1; // temporary replacement for return [responseArray count] for testing purposes

}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier =@"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    cell.textLabel.text=[responseArray objectAtIndex:indexPath.row];

    return cell;
}

For comparison, the following code does work: 为了进行比较,以下代码可以正常工作:

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.colors= [[NSArray alloc] initWithObjects: @"Red", @"Yellow", @"Green", @"Blue", @"Purple", nil];
    NSLog(@"%@", self.colors); // logs fine
}

@synthesize colors;

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [self.colors count];

}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier =@"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    cell.textLabel.text=[self.colors objectAtIndex:indexPath.row];

    return cell;
}

Update 更新

My cellForRowAtIndexPath now looks like this, but I'm still not getting any results. 我的cellForRowAtIndexPath现在看起来像这样,但是我仍然没有得到任何结果。 Is there a problem with my JSON? JSON是否有问题?

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier =@"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    cell.textLabel.text=[[self.responseArray objectAtIndex:indexPath.row]objectForKey:@"name"];

    return cell;
}

JSON: JSON:

[{"name":"venue 1"},{"name":"venue 2"},{"name":"venue 3"}]
    @interface YourTableViewController ()<BViewControllerDelegate>

    @property (strong, nonatomic) NSArray *responseArray;

    @end

    @implementation yourTableViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
      self.responseArray = [NSJSONSerialization JSONObjectWithData:response options:0 error:&error];

}

        - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        {
            // Return the number of rows in the section.
            return [self.responseArray count];

        }

        -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        {
            static NSString *CellIdentifier =@"Cell";
            UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

            cell.textLabel.text=[[self.responseArray objectAtIndex:indexPath.row]objectForKey:@"yourKey"];

            return cell;
        }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM