0

这是我的示例 twitter 程序,它可以工作,但是如果我向上或向下滚动顶部和底部单元格会出现几个错误,有时我会收到一条错误消息:

BAD ACCESS CODE 这发生在这一行

NSDictionary *tweet = [tweets objectAtIndex:indexPath.row];

请指教

在此处输入图像描述

#import "TableViewViewController.h"

@interface TableViewViewController ()

@end

@implementation TableViewViewController

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"tweets array count : %d", tweets.count);
    return tweets.count;
}

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

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

    NSLog(@"ROW : %d", indexPath.row);

    NSDictionary *tweet = [tweets objectAtIndex:indexPath.row];
    NSString *text = [tweet objectForKey:@"text"];
    NSString *name = [[tweet objectForKey:@"user"] objectForKey:@"name"];

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

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

- (void)fetchTweets
{

    NSString *twitterURL = [NSString stringWithFormat:@"https://api.twitter.com/1/statuses/public_timeline.json"];    
    NSURL *fullURL = [NSURL URLWithString:twitterURL];

    NSError *error = nil;
    NSData *dataURL = [NSData dataWithContentsOfURL:fullURL options:0 error:&error];

    tweets  = [NSJSONSerialization JSONObjectWithData:dataURL
                                                      options:kNilOptions
                                                        error:&error];    
}

.....

@end
4

4 回答 4

3

我在这个函数中看到了问题:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"tweets array count : %d", tweets.count);
    //return tweets.count;
    return 11; //default returns 20 but only shows 10 indexpath.Row so 11
}

您可能不应该只返回 11 - 如果tweets长度不同怎么办?表格视图将尝试获取数组中不存在的索引处的单元格。尝试返回tweets.count

进一步详细说明:该tableView:numberOfRowsInSection:方法的目的不是告诉 iOS 屏幕上有多少行,而是整个tableView. 这包括未在屏幕上显示的单元格。

于 2012-06-27T17:22:15.167 回答
1

找到答案 我的应用程序不支持 ARC,因为我没有检查我们是否在 NSJSONSerialization 中使用了保留,错误已修复。

 tweets  = [[NSJSONSerialization JSONObjectWithData:dataURL
                                                      options:kNilOptions
                                                        error:&error] retain];
于 2012-06-28T16:47:59.963 回答
0

为什么 numberOfRowsInSection 硬编码为 11?

在设置 tweets 数组后,您还应该有 [self.tableView reloadData]fetchTweets

于 2012-06-27T17:26:36.090 回答
0

你为什么不在你return tweets.count;numberOfRowsInSection方法中取消注释?

于 2012-06-27T17:30:16.587 回答