我試圖使用答案,Crashlytics內的框架來跟蹤事件。 當我嘗試運行它時,它崩潰。答案崩潰
在頂部:
import Fabric
import Crashlytics
然後在應用程序委託進一步下跌:
Fabric.with([Crashlytics()])
Fabric.with([Answers()])
最後我做的:
Answers.logCustomEventWithName("test", customAttributes: ["test1":"a"])
而且它拋出一個異常:
[CLSAnalyticsController logCustomEvent:]: unrecognized selector sent to instance 0x7fa061d356c0
2015-09-15 19:29:02.210 TestApp[80248:5943964] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CLSAnalyticsController logCustomEvent:]: unrecognized selector sent to instance 0x7fa061d356c0'
*** First throw call stack:
任何想法發生了什麼?
我嘗試刪除Crashlytics並重新安裝,並沒有運氣。這可能是Xcode/ios9問題嗎?
非常感謝!
嗯感謝,但沒有運氣 – NullHypothesis