Question

Salut comment puis-je le résoudre ici est mon fichier * .h: puis-je inclure quelque chose? J'ai trouvé que je dois #import <AppKit/AppKit.h> Mais je ne trouve même pas le framework 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

Remercier

Était-ce utile?

La solution

iPhone / Uikit n'offre pas la classe NSProgressIndicator. C'est pour la programmation Mac OS X.

Vous voulez uiprogressindicator, iirc.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top