Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Xcode
build/*
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile
*.moved-aside
.DS_Store
521 changes: 521 additions & 0 deletions OAuthConsumer.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions OAuthConsumer/OAuthConsumer-Prefix.pch
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
//
// Prefix header for all source files of the 'OAuthConsumer' target in the 'OAuthConsumer' project
//

#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
File renamed without changes.
18 changes: 18 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
About OAuthConsumer
===================

This is an iPhone ready version of:
http://oauth.googlecode.com/svn/code/obj-c/OAuthConsumer/

"iPhone ready" simply means you just need to add the files to Xcode, and import "OAuthConsumer.h".


Adding OAuthConsumer as a framework
===================================

Build OAuthConsumer as a framework is very easy and have a lot of advantages than add one by one the OAuthConsumer source code, specially if your project uses ARC

1) Download the OAuthConsumer source code and open it with Xcode
2) Select the "OAuthConsumer Framework" target and build it in "Release" mode
3) A "OAuthConsumer.framework" will be generated in the "build" directory, at the same level of the "OAuthConsumer.xcodeproj"
4) Drag and drop this framework to your project and add "-ObjC" in your project -> Build Settings -> Other Linker Flags


If you're rolling with the iPhone:
===================================

1) Be sure to add Security.framework.
2) Include libxml2.dylib in your frameworks. You also need to add a
Expand All @@ -12,4 +28,6 @@ include "$SDKROOT/usr/include/libxml2" with "Recursive" checked.

Be sure to include sys/types.h.



Questions? E-mail me. jonathan at my initials (jdg) dot net.