在Xcode中获得预期的类型

时间:2014-01-11 20:23:54

标签: ios objective-c xcode xcode5

我收到错误:期望xcode中的类型。我不知道为什么我在.h类中遇到这种错误。 这是我的代码和屏幕截图。

#import <Foundation/Foundation.h>
@interface NaviGationStack : NSObject
@property (nonatomic, strong) NSMutableArray *navigattionStack;
+(NaviGationStack*)navigationStackClass;
-(void)popViecontrollerFromStack;
-(int)getNumberElementInStack;
-(void)pushViewControllerToStack:(UIViewController *)viewController;

我在上一个函数中遇到此错误。here is the error

1 个答案:

答案 0 :(得分:15)

导入UIKit.h而不是Framework.h

#import <UIKit/UIKit.h>