2013-02-21 174 views
0

在我的新應用程序中,我使用MKStoreKit刪除廣告。它的購買方面工作,但就恢復功能而言,沒有任何工作!我已經正確實現所有的框架和MKStoreKit文件,但我得到的錯誤:MKStoreKit恢復非消費品購買

No visible @interface for 'MKStoreManager' declares the selector 'restorePreviousTransactions' 

,我在我的恢復IBAction爲使用的代碼是:

[[MKStoreManager sharedManager] restorePreviousTransactions]; 

但它只是給我這個錯誤! 我正在使用最新版本的MKStoreKit可通過Github獲得。 可能任何人有任何想法?

回答

0

你可以試試這個。

[[MKStoreManager sharedManager] restorePreviousTransactionsOnComplete:^{ 
     NSLog(@"Restored"); 

    } onError:^(NSError *error) { 
     NSLog(@"Reseting purchases failed because of error: %@", [error description]); 

    }];