0

我无法将BugClipper集成到我的项目中。

我遵循了他们网站上提到的集成说明 但是,当我继续构建时,它会引发以下错误 -

Cannot find executable for CFBundle/CFPlugIn 0x17eaf2f0 (not loaded) 
2014-07-24 12:34:15.457 BugClipper[371:60b] -[SMOCInvokerView smoc_width]: unrecognized selector sent to instance 0x17eae380 
2014-07-24 12:34:15.459 BugClipper[371:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[SMOCInvokerView smoc_width]: unrecognized selector sent to instance 0x17eae380' 
*** First throw call stack: 
(0x2eafce83 0x391a66c7 0x2eb007b7 0x2eaff0af 0x2ea4ddc8 0x10e8bf 0x10e60f 0x3968b0af 0x3968bcdb 0x10e5e7 0x105861 0xea8e5 0x312f1aad 0x312f14f3 0x312ebb41 0x31286a07 0x31285cfd 0x312eb321 0x3373876d 0x33738357 0x2eac7777 0x2eac7713 0x2eac5edf 0x2ea30471 0x2ea30253 0x312ea5c3 0x312e5845 0xeaae5 0x3969fab7) 
libc++abi.dylib: terminating with uncaught exception of type NSException
4

1 回答 1

3

似乎没有加载类别,最好转到目标应用程序的构建设置,然后搜索其他链接器标志并在其中添加一行,-ObjC -all_load

这绝对可以解决您的问题。

干杯

于 2014-08-01T06:38:04.153 回答