В моем файле пера UIView у меня есть UITableView, который занимает примерно половину экрана. Соответствующие файлы .h и .m:
// helloViewController.h
#import <UIKit/UIKit.h>
@interface helloViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
NSArray *locationArray;
}
@property (nonatomic, retain) NSArray *locationArray;
@end
// helloViewController.m
@synthesize locationArray;
- (void)viewDidLoad {
locationArray = [NSArray arrayWithObjects:@"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9", @"10", @"11", nil];
[super viewDidLoad];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
[[cell textLabel] setText: [locationArray objectAtIndex:[indexPath row]]];
return cell;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 8;
}
Когда я запускаю это, он падает, когда я пытаюсь прокрутить таблицу (без ошибок в отладчике). Однако, если я заменю [[cell textLabel] setText: [locationArray objectAtIndex: [indexPath row]]]; с
[[cell textLabel] setText:@"Boom"];
... не падает ....
Что вызывает эту проблему? Делегат и источник данных связаны с владельцем файла в IB, а класс владельца файла установлен на правильный класс. Является ли проблемой то, что я использую табличное представление в uiview в nib?