SeckeychainItemref undeclared
When I am integrating MGTwitterEngine
in my app, this error is coming:
"SeckeychainItemref" undeclared
Can 开发者_如何学Pythonanyone tell how to resolve this?
I had similar problem while building OAuthConsumer for iOS - I removed unwanted Mac specific key-chain files .h/.m and I can build it on iOS.
SeckeychainItemref is not available in the iOS SDK. As far as I know, its only used, for testing in the iPhone simulator. (if you found it in the code for a iOS app)
If it isn't for iOS, then you should add the Security framework and import Security/Security.h in your code.
精彩评论