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 に答える