无法识别的选择器发送到类错误

时间:2013-04-18 00:56:51

标签: xcode

所以我有一个名为IAP的类,带有.h和.m文件。 .h看起来像这样:

#import <UIKit/UIKit.h>
#import <StoreKit/StoreKit.h>

@interface IAP : UIViewController <SKProductsRequestDelegate,      SKPaymentTransactionObserver, UIAlertViewDelegate>




+(void)myIAPWithItem;

@end

但是当我调用函数myIAPWithItem时,我得到了错误。我称之为:

[IAP myIAPWithItem];

还有一个项目参数我刚把它拿去测试。

1 个答案:

答案 0 :(得分:1)

您的.m文件中是否有实现?

// in IAP.m

@implementation IAP

+(void)myIAPWithItem {
    // do something
}

@end