Domanda

Ciao, come posso risolverlo, ecco il mio file *.h: posso includere qualcosa?ho scoperto che devo farlo #import <AppKit/AppKit.h> ma non trovo nemmeno il 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

Grazie

È stato utile?

Soluzione

iPhone/UIKit non offre la classe NSProgressIndicator.Questo è per la programmazione su Mac OS X.

Vuoi UIProgressIndicator, IIRC.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top