我无法找到UITableView在滚动时崩溃我的applciation问题的解决方案。我使用的是Apple Apple文档中的以下代码:
NSDictionary *categoryArray;
- (void)viewDidLoad
{
[super viewDidLoad];
UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"bg_black.png"]];
self.view.backgroundColor = background;
[background release];
MyApp *myapp = [[MyApp alloc ] init];
categoryArray = [myapp getCategory];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [categoryArray 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];
}
// Set up the cell...
NSString *cellValue = [categoryArray objectForKey: [NSString stringWithFormat:@"%d", indexPath.row+1]];
cell.textLabel.text = cellValue;
return cell;
}
NSDictionary categoryArray看起来像这样(从全局单例类中检索):
{
1 = Bars;
2 = Nightclubs;
3 = Societies;
4 = Colleges;
5 = University;
}
我很确定它是某种内存分配/回收单元格,但我无法确切地看到我出错的地方。
错误抛出:
2011-11-23 21:29:01.888 WhatsOniPhone[3759:b303] -[__NSArrayM objectForKey:]: unrecognized selector sent to instance 0x4e7a3f0
2011-11-23 21:29:01.892 WhatsOniPhone[3759:b303] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayM objectForKey:]: unrecognized selector sent to instance 0x4e7a3f0'
*** Call stack at first throw:
(
0 CoreFoundation 0x00dde5a9 __exceptionPreprocess + 185
1 libobjc.A.dylib 0x00f32313 objc_exception_throw + 44
2 CoreFoundation 0x00de00bb -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
3 CoreFoundation 0x00d4f966 ___forwarding___ + 966
4 CoreFoundation 0x00d4f522 _CF_forwarding_prep_0 + 50
5 WhatsOniPhone 0x0000340a -[FirstViewController tableView:cellForRowAtIndexPath:] + 314
6 UIKit 0x000a5b98 -[UITableView(UITableViewInternal) _createPreparedCellForGlobalRow:withIndexPath:] + 634
7 UIKit 0x0009b4cc -[UITableView(UITableViewInternal) _createPreparedCellForGlobalRow:] + 75
8 UIKit 0x000b07f7 -[UITableView(_UITableViewPrivate) _updateVisibleCellsNow:] + 1348
9 UIKit 0x000a890c -[UITableView layoutSubviews] + 242
10 QuartzCore 0x016c8a5a -[CALayer layoutSublayers] + 181
11 QuartzCore 0x016caddc CALayerLayoutIfNeeded + 220
12 QuartzCore 0x016700b4 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 310
13 QuartzCore 0x01671294 _ZN2CA11Transaction6commitEv + 292
14 QuartzCore 0x0167146d _ZN2CA11Transaction17observer_callbackEP19__CFRunLoopObservermPv + 99
15 CoreFoundation 0x00dbf89b __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 27
16 CoreFoundation 0x00d546e7 __CFRunLoopDoObservers + 295
17 CoreFoundation 0x00d1d1d7 __CFRunLoopRun + 1575
18 CoreFoundation 0x00d1c840 CFRunLoopRunSpecific + 208
19 CoreFoundation 0x00d1c761 CFRunLoopRunInMode + 97
20 GraphicsServices 0x010161c4 GSEventRunModal + 217
21 GraphicsServices 0x01016289 GSEventRun + 115
22 UIKit 0x0003ec93 UIApplicationMain + 1160
23 WhatsOniPhone 0x00002759 main + 121
24 WhatsOniPhone 0x000026d5 start + 53
)
terminate called throwing an exceptionsharedlibrary apply-load-rules all
答案 0 :(得分:2)
这里的问题是,与您预测的相关的可能是内存管理。我认为问题是categoryArray
正在被释放,并且在你的异常情况下,由一个不同的对象在内存中替换为NSArray。对此的修复是保留categoryArray
,因为由于某种原因,视图控制器没有正确保留它。因此,无论何时分配categoryArray
,都要categoryArray = [... retain]
而不是categoryArray = ...
。如果您要将categoryArray
指定为属性,请将该属性声明为@property (nonatomic, retain) NSDictionary * categoryArray
。
如果您的视图控制器保留了categoryArray
的所有权,则必须按照以下方式在dealloc方法中释放它:
- (void)dealloc {
// if using a property
self.categoryArray = nil;
// if not using a property
[categoryArray release];
...
[super dealloc];
}
答案 1 :(得分:1)
从堆栈跟踪中,isue来自在类别数组上调用的objectForKey方法。
根据我的理解,NSArray没有方法'objectForKey'。您可能想要一个NSDictionary。
答案 2 :(得分:1)
该堆栈跟踪表明您正在尝试在没有该方法的类上调用方法。具体来说,您在objectForKey
的实例上调用了NSArray
。您确定categoryArray
是NSDictionary
而不是NSArray
的实例吗?
答案 3 :(得分:1)
在您使用它之前,看起来categoryArray
中的对象已被解除分配。然后,内存地址被重用于另一个对象,恰好是__NSArrayM
。
您在viewDidLoad
中分配了变量。
categoryArray = [myapp getCategory];
如果没有看到getCategory
的内容,我不确定,但我怀疑返回值是自动释放的。因此,您需要获取对象的所有权,以使其在当前方法的末尾挂起。
您应该使用setter:
[self setCategoryArray:[myapp getCategory]];
或保留返回值:
categoryArray = [[myapp getCategory] retain];
此外,您应该重命名getCategory
方法。按照惯例,以get
开头的方法具有特定含义:它们将指针指针作为参数,并将值放入该位置以供调用者使用。例如,参见-[NSArray getObjects:range:]