我的代码非常简单。一个带有实例变量“dataArray”的TableViewController,该表在视图出现时填充。
问题:当我点击其中一个条目(didSelectRowAtIndexPath)时,我的应用程序崩溃了。 在调试这个例子后我发现,“dataArray”目前没有对象,但为什么呢?如何显示单击的行?
标题文件:
#import <UIKit/UIKit.h>
@interface DownloadTableViewController : UITableViewController {
NSMutableArray *dataArray;
}
@property (nonatomic, retain) NSMutableArray *dataArray;
@end
.m文件:
#import "DownloadTableViewController.h"
@implementation DownloadTableViewController
@synthesize dataArray;
- (void)viewWillAppear:(BOOL)animated{
dataArray = [NSMutableArray arrayWithObjects:@"Mac OS X", @"Windows XP", @"Ubuntu 10.04", @"iOS 4.2", nil];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [dataArray count];
}
- (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.text = [dataArray objectAtIndex:indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"%@", [self.dataArray objectAtIndex:indexPath.row]);
}
- (void)dealloc {
[super dealloc];
}
@end
答案 0 :(得分:5)
这一行:
dataArray = [NSMutableArray arrayWithObjects:@"Mac OS X", @"Windows XP", @"Ubuntu 10.04", @"iOS 4.2", nil];
应该是这样的:
dataArray = [[NSMutableArray alloc] initWithObjects:@"Mac OS X", @"Windows XP", @"Ubuntu 10.04", @"iOS 4.2", nil];
或
self.dataArray = [NSMutableArray arrayWithObjects:@"Mac OS X", @"Windows XP", @"Ubuntu 10.04", @"iOS 4.2", nil];
或
[self setDataArray:[NSMutableArray arrayWithObjects:@"Mac OS X", @"Windows XP", @"Ubuntu 10.04", @"iOS 4.2", nil]];
您的应用崩溃的原因是因为dataArray
是自动释放的,因此在您使用它之前会被解除分配。