在接口文件的以下代码中,我收到错误“Unknown type name RefreshScreen”
#import <UIKit/UIKit.h>
#import <Storekit/Storekit.h>
#import "RefreshScreen.h"
@interface ViewControllerWordHelper : UIViewController <SKProductsRequestDelegate, SKPaymentTransactionObserver, UITextFieldDelegate, UIAlertViewDelegate> {
RefreshScreen *rs;
}
@property(nonatomic, retain) RefreshScreen * rs;
@end;
在同一个项目中,我有RefreshScreen类定义的RefreshScreen.h和RefreshScreen.m,它们没有错误。
感谢任何帮助。
答案 0 :(得分:0)
尝试使用
@class RefreshScreen
而不是
#import "RefreshScreen.h"
关于这个主题的更多信息可以在这里找到(关于盘旋进口)
Objective-C header file not recognizing custom object as a type