cellForRowAtIndexPath: вылетает при попытке доступа к массивам objectAtIndex: indexPath.row - PullRequest
1 голос
/ 30 мая 2010

Я загружаю данные в UITableView, из пользовательского UITableViewCell (собственный класс и перо). Это прекрасно работает, пока я не попытаюсь получить доступ к objectAtIndex:indexPath.row для некоторых массивов.

Сначала я опубликую свой код, тогда вам, вероятно, будет легче понять, что я имею в виду.

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

    if (cell == nil){
        NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
        for (id currentObject in topLevelObjects){
            if ([currentObject isKindOfClass:[CustomCell class]]){
                cell = (CustomCell *) currentObject;
                break;
            }
        }
    }
    // Configure the cell...
    NSUInteger row = indexPath.row;
    cell.titleLabel.text = [postsArrayTitle objectAtIndex:indexPath.row];
    cell.dateLabel.text = [postsArrayDate objectAtIndex:indexPath.row];
    cell.cellImage.image = [UIImage imageWithContentsOfFile:[postsArrayImgSrc objectAtIndex:indexPath.row]];

    return cell;
}

Странно то, что он работает, когда загружается в первые три ячейки (они имеют высоту 130px), но падает, когда я пытаюсь прокрутить вниз. (Ака, журнал показывает три числа, прежде чем он падает, 0, 1, 2)

Итак, как итог, objectAtIndex:indexPath.row успешно выполняется 3 * 3 раза, но когда я пытаюсь прокрутить приложение вниз, загружая новые ячейки, приложение вылетает со следующей ошибкой:

2010-05-30 14:00:43.122 app[2582:207] -[NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x5a44bf0
2010-05-30 14:00:43.124 app[2582:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x5a44bf0'
// Stack
    0   CoreFoundation                   0x02398c99 __exceptionPreprocess + 185
    1   libobjc.A.dylib                     0x024e65de objc_exception_throw + 47
    2   CoreFoundation                  0x0239a7ab -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   CoreFoundation                  0x0230a496 ___forwarding___ + 966
    4   CoreFoundation                  0x0230a052 _CF_forwarding_prep_0 + 50
    5   myappname                        0x00002ab1 -[HomeTableViewController tableView:cellForRowAtIndexPath:] + 605

Дополнительная информация о массивах:

Массивы создаются в файле .h:

NSArray *postsArrayDate;
NSArray *postsArrayTitle;
NSArray *postsArrayComments;
NSArray *postsArrayImgSrc;

И заполнил viewDidLoad::

NSURL *urlPosts = [NSURL URLWithString:@"http://mysite/myphpfile.php?posts=2"]; //returns data in this format: DATA1#Data1.1#data1.2~DATA2#data2.1#~ and so on.
NSError *lookupError = nil;
NSString *data = [[NSString alloc] initWithContentsOfURL:urlPosts encoding:NSUTF8StringEncoding error:&lookupError];
postsData = [data componentsSeparatedByString:@"~"];
[data release], data = nil;
urlPosts = nil;
postsArrayDate = [[postsData objectAtIndex:2] componentsSeparatedByString:@"#"];
postsArrayTitle = [[postsData objectAtIndex:3] componentsSeparatedByString:@"#"];
postsArrayComments = [[postsData objectAtIndex:4] componentsSeparatedByString:@"#"];
postsArrayImgSrc = [[postsData objectAtIndex:5] componentsSeparatedByString:@"#"];

Как я могу исправить это падение?

Ответы [ 2 ]

3 голосов
/ 19 декабря 2010

** У меня была такая же проблема, касающаяся «я». массив исправил это. **


NSArray представлял только единственный экземпляр «ObjectAtIndex: #», который в конечном итоге обрабатывался как NSString. При создании NSArray я создал tempArray, заполнил его объектами, установил его равным MyArray, выпущенному tempArray. Но установив его равным «MyArray = tempArray;» не удалось. Требуется для обращения к массиву OBJECT с помощью «self.MyArray = tempArray;» который работает на 100% !!
0 голосов
/ 30 мая 2010

Фактическая ошибка такова:

-[NSCFString objectAtIndex:]: unrecognized selector sent to instance 0x5d10c20

Другими словами, вы пытались запустить objectAtIndex: на NSString (NSCFString), что, конечно, не поддерживает этот метод.

Вы звоните objectAtIndex: три раза в следующих строках:

cell.titleLabel.text = [postsArrayTitle objectAtIndex:indexPath.row];
cell.dateLabel.text = [postsArrayDate objectAtIndex:indexPath.row];
cell.cellImage.image = [UIImage imageWithContentsOfFile:[postsArrayImg objectAtIndex:indexPath.row]];

Похоже, что postsArrayTitle, postsArrayDate или postsArrayImg это не NSArray, а NSString.

...