gpt4 book ai didi

ios - 由于无法在 SF SDK 中找到类别,将 ObjC 项目与 SalesForce SDK 桥接会导致崩溃

转载 作者:行者123 更新时间:2023-11-30 13:52:31 25 4
gpt4 key购买 nike

我有一个名为 Core.proj 的 iOS 项目,其中包含 SalesForce SDK,它是用 Objective-C 编写的。该项目利用 SF SDK 并将二进制文件链接到 SF 库。它做了很多事情来帮助管理我的 SF 实现。它包含在我所有其他 Obj-C 项目中,并且在其中工作得非常好。

这是我第一次在 Swift (2.1) 中使用这个项目。我正在使用 iOS 9 和 Xcode 7.1.1。我将 Core.xcodeproj 添加到我的 Swift 项目中。然后我创建了一个 ObjC 文件。然后 Xcode 询问我是否要创建桥接 header 。我愿意。我创建了一个名为 Swift-Bridging-Header.h 的桥接 header 。这使我能够通过桥接 header 访问 Core.xcodeproj 中的文件。例如,我可以从桥接 header 访问我自己版本的 Salesforce 身份验证管理器。

在我的应用程序委托(delegate)中,我现在想启动 OAuth(我在这里保持最小化):

    let sharedManager = MyAuthenticationManager.sharedManager()

let successBlock: OAuthFlowSuccessCallbackBlock = { sfAuthInfo in }

let failureBlock: OAuthFlowFailureCallbackBlock = { sfAuthInfo in }

sharedManager.loginWithCompletion(successBlock, failure: failureBlock)

完全公开:您在此处看到的每个 block 都将 SFOAuthInfo 对象作为参数。为了让 Swift 读取这个 block ,我必须将 SFOAuthInfo.h 添加到复制文件中。

现在一切都可以正常编译,但是当我点击登录并执行上述代码时,出现以下错误:

    2015-12-04 11:53:54.879 MyApp[19108:3494140] -[UIDevice    macaddress]: unrecognized selector sent to instance 0x7fcfb4903230
2015-12-04 11:53:54.890 MyApp[19108:3494140] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIDevice macaddress]: unrecognized selector sent to instance 0x7fcfb4903230'
*** First throw call stack:
(
0 CoreFoundation 0x000000010d6adf65 __exceptionPreprocess + 165
1 libobjc.A.dylib 0x000000010f624deb objc_exception_throw + 48
2 CoreFoundation 0x000000010d6b658d -[NSObject(NSObject) doesNotRecognizeSelector:] + 205
3 CoreFoundation 0x000000010d603f7a ___forwarding___ + 970
4 CoreFoundation 0x000000010d603b28 _CF_forwarding_prep_0 + 120
5 MyApp 0x000000010c869317 -[SFOAuthCredentials keyMacForService:] + 84
6 MyApp 0x000000010c8696b8 -[SFOAuthCredentials updateTokenEncryption] + 210
7 MyApp 0x000000010c8673ee -[SFOAuthCredentials initWithIdentifier:clientId:encrypted:] + 211
8 MyApp 0x000000010c84102c -[SFUserAccount initWithIdentifier:] + 197
9 MyApp 0x000000010c85f32d -[SFUserAccountManager createUserAccount] + 91
10 MyApp 0x000000010c831b41 -[SFAuthenticationManager loginWithCompletion:failure:account:] + 284
11 MyApp 0x000000010c831a0b -[SFAuthenticationManager loginWithCompletion:failure:] + 53
12 MyApp 0x000000010c60440c -[MyAuthenticationManager loginWithCompletion:failure:] + 124
13 MyApp 0x000000010c5dc58f _TFC18MyApp11AppDelegate5loginfS0_FT_T_ + 911
14 MyApp 0x000000010c5dfdc4 _TFC18MyApp25LandingPageViewController17loginButtonTappedfS0_FPSs9AnyObject_T_ + 68
15 MyApp 0x000000010c5dfe16 _TToFC18MyApp25LandingPageViewController17loginButtonTappedfS0_FPSs9AnyObject_T_ + 54
16 UIKit 0x000000010e1af1fa -[UIApplication sendAction:to:from:forEvent:] + 92
17 UIKit 0x000000010e313504 -[UIControl sendAction:to:forEvent:] + 67
18 UIKit 0x000000010e3137d0 -[UIControl _sendActionsForEvents:withEvent:] + 311
19 UIKit 0x000000010e312906 -[UIControl touchesEnded:withEvent:] + 601
20 UIKit 0x000000010e219aa3 -[UIWindow _sendTouchesForEvent:] + 835
21 UIKit 0x000000010e21a691 -[UIWindow sendEvent:] + 865
22 UIKit 0x000000010e1cc752 -[UIApplication sendEvent:] + 263
23 UIKit 0x000000010e1a7fcc _UIApplicationHandleEventQueue + 6693
24 CoreFoundation 0x000000010d5da0a1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
25 CoreFoundation 0x000000010d5cffcc __CFRunLoopDoSources0 + 556
26 CoreFoundation 0x000000010d5cf483 __CFRunLoopRun + 867
27 CoreFoundation 0x000000010d5cee98 CFRunLoopRunSpecific + 488
28 GraphicsServices 0x0000000113e46ad2 GSEventRunModal + 161
29 UIKit 0x000000010e1ad676 UIApplicationMain + 171
30 MyApp 0x000000010c5ddd8d main + 109
31 libdyld.dylib 0x00000001107a592d start + 1
32 ??? 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException

SF SDK 有一个名为 UIDevice+SFHardware.h 的类别。在这个类别中,有一个称为“macaddress”的方法。很明显,它没有正确读取这个类别。但为什么?正如您从堆栈跟踪中看到的那样,它正在正确读取 SF SDK 中的其他文件。

我尝试了很多方法来让它发挥作用。例如:iOS - UUID generation throwing a strange exception但使用 UIDevice+SFHardware.h。我试过这个:https://developer.salesforce.com/forums/?id=906F00000009CBvIAM 。我再次完全重建了该项目以检查我的工作。

我不需要将此文件添加到我的桥中,因为此 UIDevice+SFHardware.h 只能从 ObjC 项目中的 SF SDK 访问。

我一定是做错了什么。任何帮助将不胜感激。

最佳答案

我刚刚解决了这个问题。

在您的项目 > build设置 > 其他链接器标志中添加:-ObjC-all_load

我的 SalesforceSDK 在我的 Pod 项目中。如果您正在执行相同的操作,请在 SalesforceMobileSDK-iOS 项目中设置这些标志。如果没有,则在 Salesforce SDK 编译的任何位置。

关于ios - 由于无法在 SF SDK 中找到类别,将 ObjC 项目与 SalesForce SDK 桥接会导致崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34088313/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com