嗨,我如何在这里解决它是我的* .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不提供NSProgressInicator类。这是对于Mac OS X编程。

你想要Uiprogressinicator,IIRC。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top