Pregunta

Hola, ¿cómo puedo resolverlo aquí es mi *.archivo h: ¿puedo incluir algo?he descubierto que tengo que #import <AppKit/AppKit.h> pero ni siquiera encuentro el 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

Gracias

¿Fue útil?

Solución

iPhone / UIKit no ofrece la clase NSProgressIndicator.Eso es para la programación de Mac OS X.

Quieres UIProgressIndicator, IIRC.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top