Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:] 今天做一個tableView遇到一個這麼個問題。 經過baidu google,終於找到正解。 因為 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 這個函式的返回值是個null!! 查stackoverflow 找到下面的解。 CellIdentifier I bet your cellForRowAtIndexPath is returning null. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Photos"; /** NOTE: This method can return nil so you need to account for that in code */ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; // NOTE: Add some code like this to create a new cell if there are none to reuse if(cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } NSString *string = [[self.photosInPlace objectAtIndex:indexPath.row] valueForKeyPath:@"description._content"]; cell.textLabel.text = string; return cell; } That's probably why [UITableView _configureCellForDisplay:forIndexPath:] is failing... becausecellForRowAtIndexPath is returning a null value and then configureCellForDisplay is expecting aUITableViewCell.
轉:Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]
轉載於:https://www.cnblogs.com/ygm900/archive/2013/06/13/3134425.html
相關文章
- [InnoDB] Assertion failure: ut0ut.cc:553 thread 140235111884544【筆記】AIthread筆記
- vulnhub - ASSERTION1.0.1
- design for failureAI
- iOS UITableView 修改屬性iOSUIView
- 優雅的使用UITableViewUIView
- Error: Debug Failure at typeToStringErrorAI
- Preferred Read Failure GroupsAI
- cannot convert (type interface {}) to type int: need type assertion
- DRIVER_POWER_STATE_FAILUREAI
- Vagrant:NS_ERROR_FAILUREErrorAI
- [virtualbox] temporary failure in name resolutionAI
- iOS Swift UITableView的scrollToRow的”坑”iOSSwiftUIView
- UITableView效能優化-中級篇UIView優化
- iOS 疑難雜症 — — UITableView 新增 tableFooterView 旋轉螢幕後收不到點選事件!!!...iOSUIView事件
- Node.js 中 TypeError [ERR_IMPORT_ASSERTION_TYPE_MISSING]Node.jsErrorImport
- mysql 報錯 Communications link failureMySqlAI
- iOS 效能篇一一UITableView效能優化iOSUIView優化
- iOS開發-UITableView的重用機制iOSUIView
- Temporary failure resolving ‘archive.ubuntu.com‘AIHiveUbuntu
- iOS-UITableView行高自動計算iOSUIView
- UITableView效能優化的幾點建議UIView優化
- 【IOS初學者】UITableView與自定義UITableViewCelliOSUIView
- tensorflow.python.framework.errors_impl.InvalidArgumentError: assertion failed: [0] [Op:Assert] namePythonFrameworkErrorAI
- Agent admitted failure to sign using the key解決MITAI
- iOS UITableView資料為空時提示頁面iOSUIView
- UITableview重新整理時介面“亂跑”現象UIView
- 如何優雅地動態插入資料到UITableViewUIView
- 【RxSwift 實踐系列 3/3】thinking in Rx- UITableViewSwiftThinkingUIView
- UITableView的原理——探究及重新實現程式碼UIView
- 如何優雅的對UITableView進行解耦UIView解耦
- Resolving archive.cloudera.com... failed: Temporary failure in nameHiveCloudAI
- Http failure response 0 Unknown error 錯誤分析HTTPAIError
- iOS使用UITableView實現的富文字編輯器iOSUIView
- 拋棄UITableView,讓所有列表頁不再難構建UIView
- UITableView佔點陣圖的低耦合性設計UIView
- 優秀的第三方庫收集-UITableViewUIView
- 詳細整理iOS中UITableView的效能最佳化iOSUIView
- VS C++ 出現debug assertion failed彈框,怎麼定位程式碼C++AI