検索

ホームページ  >  に質問  >  本文

objective-c - Xcode5 如何调试 快速定位出错行

、、、objectivec
2014-07-21 18:02:38.259 Sections[2962:70b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'must pass a class of kind UITableViewCell'
*** First throw call stack:
(
0 CoreFoundation 0x017375e4 exceptionPreprocess + 180
1 libobjc.A.dylib 0x014ba8b6 objc_exception_throw + 44
2 CoreFoundation 0x017373bb +[NSException raise:format:] + 139
3 UIKit 0x00314e08 -[UITableView registerClass:forCellReuseIdentifier:] + 247
4 Sections 0x000030eb -[BIDViewController searchDisplayController:didLoadSearchResultsTableView:] + 171
5 UIKit 0x005cc0b4 -[UISearchDisplayController searchResultsTableView] + 446
6 UIKit 0x005cd5f4 -[UISearchDisplayController _containerView] + 1031
7 UIKit 0x005c7563 -[UISearchDisplayController setActive:animated:] + 9462
8 UIKit 0x005cad4f -[UISearchDisplayController searchBarTextDidBeginEditing:] + 298
9 UIKit 0x004f52c9 -[UISearchBar(UISearchBarStatic) _searchFieldBeginEditing] + 113
10 libobjc.A.dylib 0x014cc81f -[NSObject performSelector:withObject:] + 70
11 UIKit 0x0022ec8c -[UIApplication sendAction:to:from:forEvent:] + 108
12 UIKit 0x0022ec18 -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 61
13 UIKit 0x003266d9 -[UIControl sendAction:to:forEvent:] + 66
14 UIKit 0x00326a9c -[UIControl _sendActionsForEvents:withEvent:] + 577
15 UIKit 0x0091254e -[UITextField willAttachFieldEditor:] + 685
16 UIKit 0x0032c4d5 -[UIFieldEditor becomeFieldEditorForView:] + 927
17 UIKit 0x00909643 -[UITextField _becomeFirstResponder] + 160
18 UIKit 0x004f841a -[UISearchBarTextField _becomeFirstResponder] + 98
19 UIKit 0x00386585 -[UIResponder becomeFirstResponder] + 400
20 UIKit 0x00289d0b -[UIView(Hierarchy) becomeFirstResponder] + 114
21 UIKit 0x009090e3 -[UITextField becomeFirstResponder] + 51
22 UIKit 0x005ae651 -[UITextInteractionAssistant(UITextInteractionAssistant_Internal) setFirstResponderIfNecessary] + 135
23 UIKit 0x005b0ba2 -[UITextInteractionAssistant(UITextInteractionAssistant_Internal) oneFingerTap:] + 2640
24 UIKit 0x005a4f8c _UIGestureRecognizerSendActions + 230
25 UIKit 0x005a3c00 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:] + 383
26 UIKit 0x005a566d -[UIGestureRecognizer _delayedUpdateGesture] + 60
27 UIKit 0x005a8bcd ___UIGestureRecognizerUpdate_block_invoke + 57
28 UIKit 0x005a8b4e _UIGestureRecognizerRemoveObjectsFromArrayAndApplyBlocks + 317
29 UIKit 0x0059f248 _UIGestureRecognizerUpdate + 199
30 UIKit 0x0026bd4a -[UIWindow _sendGesturesForEvent:] + 1291
31 UIKit 0x0026cc6a -[UIWindow sendEvent:] + 1030
32 UIKit 0x00240a36 -[UIApplication sendEvent:] + 242
33 UIKit 0x0022ad9f _UIApplicationHandleEventQueue + 11421
34 CoreFoundation 0x016c08af __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION
+ 15
35 CoreFoundation 0x016c023b __CFRunLoopDoSources0 + 235
36 CoreFoundation 0x016dd30e __CFRunLoopRun + 910
37 CoreFoundation 0x016dcb33 CFRunLoopRunSpecific + 467
38 CoreFoundation 0x016dc94b CFRunLoopRunInMode + 123
39 GraphicsServices 0x036d89d7 GSEventRunModal + 192
40 GraphicsServices 0x036d87fe GSEventRun + 104
41 UIKit 0x0022d94b UIApplicationMain + 1225
42 Sections 0x0000399d main + 141
43 libdyld.dylib 0x01d75701 start + 1
44 ??? 0x00000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
、、、
如上所示,错误提示,使用的是XCODE5 无法根据错误提示找到出错行,网上有的方法试过不可以。希望知道的同学告知下。谢谢!

怪我咯怪我咯2768日前739

全員に返信(3)返信します

  • PHP中文网

    PHP中文网2017-04-22 09:02:08

    Xcode の Breakpoint Navigator で例外ブレークポイント (Add Exception Breakpoint) を追加し、ブレークポイント条件を Exception: Object-C に設定すると、例外がスローされる前にブレークでき、その時点のコール スタックを表示できます。

    問題のあるコードが実行されようとしているときにこのブレークポイントを開くのが最善であることに注意してください。そうしないと、さまざまな例外によって妨げられ続けます。

    返事
    0
  • PHP中文网

    PHP中文网2017-04-22 09:02:08

    あなたのプロジェクトは「セクション」という名前ですよね?
    ここで例外がスローされます:
    4 Sections 0x000030eb -[BIDViewController searchDisplayController:didLoadSearchResultsTableView:] + 171
    BIDViewController クラスの searchDisplayController メソッドのコード オフセットは 171 です (このメソッドのほぼ 170 文字、ほぼ 2 行目と 3 行目です。171 は行番号などではないことに注意してください)。

    iOS の例外解析については、開発者に例外がスローされる場所が直接通知されないため、最初は本当に頭の痛い問題です。また、例外スタックが存在しない場合もあります。特にコードオフセット番号は非常に誤解を招きます。通常、デバッグ方法は多数あり、すべてをカバーするには一晩かかります。 Huan Du さんが回答したException ブレークポイント もその 1 つで、もちろんログ アサーションの印刷表示方法、シンボリック ブレークポイントの設定、LLDB デバッグ ツール もあります。個人的には、質問に掲載されているスタック分析方法の方がまだ好きです。基本的に、問題はクラス名、メソッド名、コード オフセットに基づいて判断できます。

    スタックレポートについて、その内容の意味を簡単に紹介します:
    例:
    4 セクション 0x000030eb -[BIDViewController searchDisplayController:didLoadSearchResultsTableView:] + 171
    合計 5 つの部分が含まれています: 4/Sections/0x000030eb/-[BIDView...ew:]/171
    パート 1: スタックはシーケンス番号を出力します。シーケンス番号が大きいほど、コードはより早く呼び出されます。
    パート 2: 呼び出されたメソッドが属するフレームワーク (ライブラリ/プロジェクト) たとえば、セクションはプロジェクトです。 パート 3: 呼び出しメソッドのメモリ アドレス、0x000030eb
    パート 4: メソッド名の呼び出し、これは非常に重要です。つまり、[BIDViewController searchDisplayController:didLoadSearchResultsTableView:]
    パート 5: コンパイル後にメソッドを呼び出した後のコード オフセット。ここでも行番号ではなく、コンパイルされたコード オフセットですが、基本的には文字数と同じです。いくつかのテキスト ツールを使用してカウントできます。文字オフセットはエラー行の概算であり、一般的なエラーは 3 ~ 5 行以内です。

    Xcode がスタック ログを出力しないようにするためのちょっとしたヒントを次に示します:

    次のように、main.m の main メソッドに @try@catch を追加します:
    リーリー

    ただし、アプリを公開する前に try catch パッケージを削除することを忘れないでください、~~~

    返事
    0
  • 大家讲道理

    大家讲道理2017-04-22 09:02:08

    [UITableView registerClass:forCellReuseIdentifier:] ここで問題が発生しました。

    返事
    0
  • キャンセル返事