如何调试“发送到实例的未识别选择器”错误我正在为我的表视图创建一个自定义表格单元格视图。在将自定义单元格的图像视图(在故事板中)连接到我的代码后,我会得到以下错误。[UITableViewCellContentView image]: unrecognized selector sent to instance 0x7fb4fad7fd20'*** First throw call stack:( 0 CoreFoundation 0x000000010ccbb3f5 __exceptionPreprocess + 165 1 libobjc.A.dylib 0x000000010e7e9bb7 objc_exception_throw + 45 2 CoreFoundation 0x000000010ccc250d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205 3 CoreFoundation 0x000000010cc1a7fc ___forwarding___ + 988 4 CoreFoundation 0x000000010cc1a398 _CF_forwarding_prep_0 + 120 5 UIKit 0x000000010d7d8881 -[UITableViewCell _marginWidth] + 151 6 UIKit 0x000000010d7ca23d -[UITableViewCell _separatorFrame] + 70 7 UIKit 0x000000010d7ca6fa -[UITableViewCell _updateSeparatorContent] + 360 8 UIKit 0x000000010d7d4e85 -[UITableViewCell _setSectionLocation:animated:forceBackgroundSetup:] + 1174 9 UIKit 0x000000010d634ea8 __53-[UITableView _configureCellForDisplay:forIndexPath:]_block_invoke + 1822)你能告诉我如何解决这个错误吗?谢谢。我在我的项目中添加了一个异常断点。这就是它断裂的地方。 override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = self.tableView.dequeueReusableCellWithIdentifier(kCellIdentifier) as ItemTableViewCell <---------------但我的代码中没有使用“图像”。
3 回答
天涯尽头无女友
TA贡献1831条经验 获得超9个赞
-[NSObject(NSObject) doesNotRecognizeSelector:]
[+]
慕尼黑的夜晚无繁华
TA贡献1864条经验 获得超6个赞
[UITableViewCellContentView image]: unrecognized selector sent to instance
image
image
Image
image
someMethod:someParm:
someMethod:someParm:anotherParm:
NSArray* myArray = [myDictionary objectForKey:@"values"];NSString* myString = [myArray objectAtIndex:5];
[__NSDictionaryI objectAtIndex:] unrecognized selector sent to instance
myDictionary
- 3 回答
- 0 关注
- 343 浏览
添加回答
举报
0/150
提交
取消