如何解决?NSProgressIndicator'之前的预期说明符 - 限定符列表

嗨,我怎么能解决这里是我的* .h文件:我可以包括一些想法吗?我发现我必须
#import <AppKit/AppKit.h>
但我甚至找不到AppKit框架
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
#import <Foundation/Foundation.h>
#import "RootViewController.h"
#import "CrossViewController.h"
#import "NavTestAppDelegate.h"
#import "Obrat1.h"
#import "Event.h"
#import "StvrtyViewController.h"
#import "MBProgressHUD.h"


@interface TretiViewController : UIViewController <NSFetchedResultsControllerDelegate> {
    UILabel *testLabel;
    UILabel *acBallanceLable;
    UILabel *acNumberLable;
    UILabel *accCurrencyLabel;
    NSString *ibaTestFix;
    UITableView *tView;
    NSMutableArray *other;
    NSFetchedResultsController *fetchedResultsController_;
    NSManagedObjectContext *managedObjectContext_;
    MBProgressHUD *HUD;
    NSProgressIndicator *progressIndicator;  //here it falls
谢谢     
已邀请:
iPhone / UIKit不提供NSProgressIndicator类。这适用于Mac OS X编程。 你想要UIProgressIndicator,IIRC。     

要回复问题请先登录注册