My Xcode project imported MKStoreKit.
And I followed to this.
http://blog.mugunthkumar.com/coding/using-mkstorekit-in-your-apps/
But it has many error.
SFHFKeychainUtils.m
,ARC Casting Rules
,Semantic issue
,ARC Restrictions
Total 39 bugs.
I linked StoreKit.framework,Security.framework.
-I write this Initialize code in application didFinishLaunchingWithOptions.
Initialize code is [MKStoreManager sharedManager];
However Bugs appears.
Why?
You need to disable ARC on all of the MKStoreKit files—including JSONKit, SFHFKeychainUtils, and NSData+Base64. Details are in this post
Disable Automatic Reference Counting for Some Files
Then comment out all of the the error message lines
That gets rid of all but one error in this method. But he just forgot to declare it in the .h
Add this line in your .h
The code will now compile. Don’t know if it works, but at least it compiles.