所以我有一个名为IAP的类,带有.h和.m文件。 .h看起来像这样:
#import <UIKit/UIKit.h>
#import <StoreKit/StoreKit.h>
@interface IAP : UIViewController <SKProductsRequestDelegate, SKPaymentTransactionObserver, UIAlertViewDelegate>
+(void)myIAPWithItem;
@end
但是当我调用函数myIAPWithItem时,我得到了错误。我称之为:
[IAP myIAPWithItem];
还有一个项目参数我刚把它拿去测试。
答案 0 :(得分:1)
您的.m文件中是否有实现?
// in IAP.m
@implementation IAP
+(void)myIAPWithItem {
// do something
}
@end