【发布时间】:2011-10-19 00:21:39
【问题描述】:
我知道有很多关于同一件事的问题,但到目前为止,我还无法为我的问题应用任何解决方案。而且我还没有弄清楚如何使用 Instruments。
我正在学习一个 iPhone 应用程序的基本教程,只是想稍微调整一下(我是 Objective C 的新手)。我希望它从带有字典数组而不是字符串数组的 plist 中读取。该表最初正确显示数据。但是,每当我向上滚动表格(并离开屏幕)时,我都会收到无法识别的选择器异常。只需使用 NSStrings 填充员工就可以了。我搞不清楚了。
ViewController 的相关部分:
@interface RootViewController : UITableViewController {
NSMutableArray *employees_;
}
@property (nonatomic, retain) NSMutableArray *employees;
@end
和
@implementation RootViewController
@synthesize employees=employees_;
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"Employees" ofType:@"plist"];
NSMutableArray *empArray = [[NSMutableArray alloc] initWithContentsOfFile:path];
employees_ = [empArray valueForKey:@"name"];
[empArray release];
}
- (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];
}
// Configure the cell.
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.text = [self.employees objectAtIndex:indexPath.row];//this is where it errors
return cell;
}
- (void)dealloc
{
[employees_ release];
[super dealloc];
}
@end
和 plist:
array
dict
key name /key
string Employee One /string
key id /key
string T1234 /string
/dict
dict
key name /key
string Employee Two /string
key id /key
string T5678 /string
/dict
/array
我收到的错误:
2011-10-18 20:02:44.313 MyApp[65148:bc03]-[NSCFString objectAtIndex:]:无法识别的选择器发送到实例 0x689a050 2011-10-18 20:02:44.316 MyApp[65148:bc03] *** 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[NSCFString objectAtIndex:]:无法识别的选择器发送到实例 0x689a050” *** 第一次抛出调用堆栈: ( 0 核心基础 0x00dc25a9 __exceptionPreprocess + 185 1 libobjc.A.dylib 0x00f16313 objc_exception_throw + 44 2核心基础0x00dc40bb-[NSObject(NSObject)不识别选择器:]+187 3 核心基础 0x00d33966 ___转发___ + 966 4 核心基础 0x00d33522 _CF_forwarding_prep_0 + 50 5 MyApp 0x00002a96-[RootViewController tableView:cellForRowAtIndexPath:] + 326 6 UIKit 0x00089b98-[UITableView(UITableViewInternal)_createPreparedCellForGlobalRow:withIndexPath:] + 634 7 UIKit 0x0007f4cc-[UITableView(UITableViewInternal)_createPreparedCellForGlobalRow:] + 75 8 UIKit 0x000948cc-[UITableView(_UITableViewPrivate)_updateVisibleCellsNow:] + 1561 9 UIKit 0x0008c90c -[UITableView layoutSubviews] + 242 10 QuartzCore 0x016aca5a -[CALayer layoutSublayers] + 181 11 石英核心 0x016aeddc CALayerLayoutIfNeeded + 220 12 石英核心 0x016540b4 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 310 13 石英核心 0x01655294 _ZN2CA11Transaction6commitEv + 292 14 石英核心 0x0165546d _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 99 15 核心基础 0x00da389b __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 27 16 核心基础 0x00d386e7 __CFRunLoopDoObservers + 295 17 核心基础 0x00d011d7 __CFRunLoopRun + 1575 18 核心基础 0x00d00840 CFRunLoopRunSpecific + 208 19 核心基础 0x00d00761 CFRunLoopRunInMode + 97 20 图形服务 0x00ffa1c4 GSEventRunModal + 217 21 图形服务 0x00ffa289 GSEventRun + 115 22 UIKit 0x00022c93 UIApplicationMain + 1160 23 我的应用程序 0x00002249 主要 + 121 24 我的应用程序 0x000021c5 开始 + 53 ) 终止调用抛出异常当前语言:自动;目前客观-c (gdb)【问题讨论】:
标签: iphone ios xcode uitableview