Unable to use OAuthConsumer (SecKeychainItemRef undeclared) - iPhone - iphone

I'm trying to use the OAuthConsumer framework (http://code.google.com/p/oauthconsumer/) but when I try building it among my iPhone app, xCode tells me that SecKeychainItemRef is undeclared. I previously added the Security framework to my target but it doesn't fix my problem.
What should I do to fix that?
Thanks!
Martin

Finally I manage to get rid of the error using this : http://code.google.com/p/oauthconsumer-iphone/
Cheers!

Related

'sharedApplication' is unavailable: not available on iOS (App Extension) for Segmentio/Analytics Pod

Running Xcode version 8.2.1, Swift 3, and Cocoapods version 1.1.1 and I can't for the life of me figure out how to resolve this issue. I need to use the analytics library but can't get past this error in the UIViewController+SEGScreen.m class:
Without forking, is there another solution here?
What exactly do you need to figure out? The API is not available when targeting iOS extensions. There is no solution but fixing the API. If this is an open source, the fix looks really simple (wrapping in a custom macro such #ifdef TARGET_EXTENSION). If not, time to use a properly written analytics framework, that takes into account all aspects of iOS development, not the most trivial ones only.

How to solve Apple LLVM compiler 4.1 error?

I am a beginner in iPhone developing. I want to integrate Instagram in my app and for that purpose I downloaded the api of Instagram from Github but it gives the error of Apple LLVM compiler 4.1 error Command
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1
Please give any suggestion which how to solve this error.
I found this is the simplest and step by step tutorial for integrate instagram in my iOS app
How To Create an App Like Instagram With a Web Service Backend – Part 1/2
I had the same ARC problem but if you will follow this you will its so easy and helpful
btw for the error you having just look below word, in that page and see you need to made some changes in Xcode for Libs, and you will get it working.
-fno-objc-arc
Thanks to raywenderlich :)

How to implement Sharekit on xcode 4.2

Can anyone suggest me to how to implement ShareKit on xcode 4.2.Now i am trying to use
this Url https://github.com/ShareKit/ShareKit/wiki/Installing-sharekit..but I got a lot of compilation error.I dont understad the first step they are desscribed.So please anyone help me to implement ShareKit on my application..

OpenFeint integration on iOS application

I am trying to integrate OpenFeint 2.12.5 into my app. I already read this tutorial and this one.. I read the Getting Started page in documentation and follow their indications.
I am using xcode 4.2 whit iOS 5.0 and 2.12.5 framework version of OF; tried to clean, rebuild, RECOMPILE whole thing, nothing works. I get several errors, like:
Use of undeclared identifier 'OFLog'
and
error: use of undeclared identifier 'OFDelegate'
and
'OpenFeint/OpenFeint.h' file not found
and a warning on [OpenFeint applicationWillResignActive];
like:
Class method '+applicationWillResignActive' not found (return type defaults to 'id')
Can someone help me or indicate a tutorial or something??
Thanks
openfeint changed significantly a few months ago - looks like those tutorials are referencing the old version. for example, there is no [OpenFeint applicationWillResignActive] anymore. in the past you integrated OF by dragging all the OF source into your project, but now the preferred way is via including the OF framework.
i'd recommend starting the integration over and using only the official OpenFeint documentation as a reference.
I found a solution: openfeint-with-sparrow

Tutorial for integrating three 20 in xcode 4.0.2 iphone

This may be a simple question,but i cant figure out the correct way.
I my project i want to integrate three 20 and i found a tutorial
`https://github.com/facebook/three20/`.
But i think this is for older version of xcode.
Many of the sections specified in this tutorial is not found in my xcode project.
Is there any tutorial available for xcode 4.0.2 in tegrating three 20.
Can anybody help me please.
Thanks in advance.
Check this visual explanation of adding three20 framework in your X-code project:
http://chepri.com/visual-guide-manually-adding-three20-xcode-4-project/