0

我有点难过,由于某种原因,以下代码导致我的应用程序在真正的 iPhone 上崩溃,尽管它在模拟器中运行良好,它所做的一切都是抓取一些 json 并将其放在列表视图中,有人知道吗为什么它总是崩溃?任何帮助是极大的赞赏!

--------SecondViewController.m------

#import "SecondViewController.h"

@interface SecondViewController ()

@end

@implementation SecondViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    [self fetchPrices];        
}

- (void)viewDidUnload
{
    [super viewDidUnload];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

- (void)fetchPrices
{
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        NSData* data = [NSData dataWithContentsOfURL:
                        [NSURL URLWithString: @"http://url.php"]];

        NSError* error;

        prices = [NSJSONSerialization JSONObjectWithData:data
                                                 options:kNilOptions
                                                   error:&error];

        dispatch_async(dispatch_get_main_queue(), ^{
            [self.tableView reloadData];
        });
    });
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return prices.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"PriceCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    NSDictionary *price = [prices objectAtIndex:indexPath.row];
    NSString *text = [price objectForKey:@"name"];
    NSString *name = [price objectForKey:@"price"];

    cell.textLabel.text = text;
    cell.detailTextLabel.text = [NSString stringWithFormat:@"Price: %@", name];

    return cell;
}
@end

-----SecondViewController.h----

#import <UIKit/UIKit.h>

@interface SecondViewController : UITableViewController {
NSArray *prices;
}

- (void)fetchPrices;

@end

---- 崩溃日志 ---- http://pastebin.com/cnf6L7Jf

4

1 回答 1

1

问题是 NSArray *prices 在您获取价格和处理该值之间是随机值。其次,您没有保留它。所以价格也可能是垃圾价值。

更清洁的方法是

@property(nonatomic, retain)NSArray *prices;
/**/
@synthetise prices;

// then 
SELF.prices = [[NSJSONSerialization JSONObjectWithData:data
                                                 options:kNilOptions
                                                   error:&error];

这样当您初始化表控制器时“价格”为零,并且在您需要时始终可用。

不要忘记在你的 dealloc 方法中释放它

于 2012-10-09T15:37:15.760 回答