2012-03-01 42 views
4

如果我不設置異常斷點在Xcode 4.2,我得到很好的解釋,像這樣的:可以通過Xcode獲取異常位置或解釋...我怎麼能得到這兩個?

exception -[NSLayoutManager 
_fillGlyphHoleForCharacterRange:startGlyphIndex:desiredNumberOfCharacters:] *** attempted 
glyph generation while textStorage is editing. It is not valid to cause the 
layoutManager to do glyph generation while the textStorage is editing 
(ie the textStorage has been sent a beginEditing message without a matching endEditing.) 

如果我設置斷點,我得到的問題,這是對位置也不錯。但是,我沒有得到解釋。即使我繼續,沒有任何東西寫入控制檯。

我怎樣才能兼得?據推測,由於Xcode在異常處停止,所以當我可以到達時,異常對象在調試器中的某處。

回答

-1

啓用殭屍對象異常的獲取地點:

進入菜單產品 - >計劃 - >編輯格式... - >標籤診斷 - > ON複選框啓用殭屍對象

相關問題