I have an iphone application in which i am trying to implement subscription with mkstorekit 4.1.everything works fine except that this code. in success i was adding the subscribed view. but it is not getting called at all.Can anybody help me?
[[MKStoreManager sharedManager] buyFeature:kFeatureAId onComplete:^(NSString* purchasedFeature)
{
//isPurchased = YES;
NSLog(@"Purchased: in commmmpletion %@", purchasedFeature);
[self showsubscribedview];
} onCancelled:^ {
//purchas = YES;
NSLog(@" User Cancelled Transaction");
return;
}];