所以我有一个名为 IAP 的类,带有 .h 和 .m 文件。.h 看起来像这样:
#import <UIKit/UIKit.h>
#import <StoreKit/StoreKit.h>
@interface IAP : UIViewController <SKProductsRequestDelegate, SKPaymentTransactionObserver, UIAlertViewDelegate>
+(void)myIAPWithItem;
@end
但是当我调用函数 myIAPWithItem 时,我得到了错误。我这样称呼它:
[IAP myIAPWithItem];
还有一个项目参数,我只是把它拿下来测试。