I am Using MKStoreKit for autorenewable subscription.
On Button's TouchUpInside method I am using following code..
if([[MKStoreManager sharedManager] isSubscriptionActive:kSubscriptionMonthlyIdentifier]){
//access to subscription feature
}else{
//ask user to buy
}
It always returns me false. And ask user to buy.
When I tried to buy again it shows me that You are already subscribed
.
Is there something that I am doing wrong?
Is there any other method to check if subscription is active or not.
How should I know that subscription is renewed?
Any help would be appreciated.
Thanks in Advance.