0

嗨,我该如何解决这是我的 *.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

谢谢

4

1 回答 1

4

iPhone/UIKit 不提供 NSProgressIndicator 类。这适用于 Mac OS X 编程。

你想要 UIProgressIndicator,IIRC。

于 2011-02-15T16:33:47.747 回答