2016-06-25 63 views
-1

我有這個錯誤,我已經看遍了所有和一些答案引用不存在的連接。主題:1信號SIGABRT類AppDelegate:UIResponder,UIApplicationDelegate

我所有的連接看起來都不錯。

我是一名初學者,所見解的所有解決方案都來自連接IBOutlet或代碼錯誤,但代碼與我的不同。

之前我有這個錯誤,我已經離開了項目,並繼續與另一個,但我真的需要學習如何解決這個問題或從哪裏來解決我未來的項目。

我的整個項目都在這裏。 https://www.dropbox.com/s/l9jv8z8mve7luh4/ShoppingList.zip?dl=0

連接屏幕。 https://www.dropbox.com/s/1khbq6f8ylhx5yp/Screen%20Shot%202016-06-25%20at%2011.59.00%20AM.png?dl=0

調試錯誤在下面。

感謝您的任何幫助。你的時間真的很感激。

2016年6月25日11:45:50.392 ShoppingList [2334:156567] *在聲明失敗 - [UITableView的dequeueReusableCellWithIdentifier:forIndexPath:],/BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim /UIKit-3512.60.7/UITableView.m:6573 2016-06-25 11:45:50.397 ShoppingList [2334:156567] *由於未捕獲的異常'NSInternalInconsistencyException'而終止應用程序,原因:'無法使單元退出標識符細胞 - 必須註冊標識符的筆尖或一類或情節串連圖板」 ***第一擲調用堆棧連接原型細胞: ( 0的CoreFoundation 0x001fc494 exceptionPreprocess + 180 1 libobjc.A.dylib 0x01f10e02 objc_exception_throw + 50 2的CoreFoundation 0x001fc32a + [NSException提高:格式:參數:] + 138 3基礎0x00641322 - [NSAssertionHandler handleFailureInMethod:對象:文件:LINENUMBER:描述:] + 118 4的UIKit 0x00b61afc - [UITableView的dequeueReusableCellWithIdentifier:forIndexPath :] + 258 5 ShoppingList 0x0000a723 _TFC12ShoppingList14ViewController9tableViewfTCSo11UITableView21cellForRowAtIndexPathCSo11NSIndexPath_CSo15UITableViewCell + 147 6 ShoppingList 0x0000a969 _TToFC12ShoppingList14ViewController9tableViewfTCSo11UITableView21cellForRowAtIndexPathCSo11NSIndexPath_CSo15UITableViewCell + 89 7的UIKit 0x00b76934 - [UITableView的_createPreparedCellForGlobalRow:withIndexPath:willDisplay:] + 822 8的UIKit 0x00b76a7d - [UITableView的_createPreparedCellForGlobalRow:willDisplay:] + 90 9的UIKit 0x00b46b32 - [UITableView的_updateVisibleCellsNow:isRecursive:] + 3347 10的UIKit 0x00b65416 __29- [UITableView的layoutSubviews] _block_invoke + 52 11的UIKit 0x00b806cc - [UITableView的_performWithCachedTraitCollection:] + 88 12 UIKit 0x00b652eb - [UITableView layoutSubviews] + 214 13 UIKit 0x00abb3d4 - [UIView(CALayerDelegate)layoutSublayersOfLayer:] + 810 14 libobjc.A。dylib 0x01f25059 - [NSObject的performSelector:withObject:] + 70 15 QuartzCore 0x05300096 - [CALayer的layoutSublayers] + 144 16 QuartzCore 0x052f38b6 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 388 17 QuartzCore 0x052f371a _ZN2CA5Layer28layout_and_display_if_neededEPNS_11TransactionE + 26 18 QuartzCore 0x052e5ee7 _ZN2CA7Context18commit_transactionEPNS_11TransactionE + 317 19 QuartzCore 0x0531a847 _ZN2CA11Transaction6commitEv + 561 20 QuartzCore 0x0531c0b8 _ZN2CA11Transaction17flush_transactionEv + 50 21的UIKit 0x009e49b1 _UIApplicationHandleEventQueue + 8379 22的CoreFoundation 0x0010ee5f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 1 5 23的CoreFoundation 0x00104aeb __CFRunLoopDoSources0 + 523 24的CoreFoundation 0x00103f08 __CFRunLoopRun + 1032 25的CoreFoundation 0x00103846 CFRunLoopRunSpecific + 470 26的CoreFoundation 0x0010365b CFRunLoopRunInMode + 123個 27 GraphicsServices 0x046d2664 GSEventRunModal + 192 28個GraphicsServices 0x046d24a1 GSEventRun + 104 29的UIKit 0x009eaeb9 UIApplicationMain + 160 30 ShoppingList 0x0000bff1主+ 145 31 libdyld.dylib 0x02927a25開始+ 1 ) 的libC++ abi.dylib:與類型NSException的未捕獲的異常終止

+1

上面的錯誤信息清楚地表明你的代碼試圖設置一個表格單元格,其標識符與你提供的任何定義不同(例如在故事板中)。你需要檢查。 – Feldur

+0

非常感謝,你剛剛度過了我的一天!我如何將此標記爲答案?因爲這是一個評論,而不是一個答案。 – arthurbas

回答

1

上面的錯誤消息清楚地表明你的代碼試圖設置一個表格單元格,其標識符與你提供的任何定義不同(例如在故事板中)。你需要檢查