从其他类调用SetNeedsDisplay

时间:2013-09-25 22:32:24

标签: objective-c macos cocoa nsview nsviewcontroller

今天我遇到了一个新问题:

我有一个ViewController(NSView的子类)和另一个类(NSObject的子类),它通过IBAction尝试回调viewController以使用SetNeedsDisplay重绘其视图:是。

重绘视图的方法(ViewController.m)是:

- (void) redrawView {
[self setNeedsDisplay:YES] 
} 
// With an NSLog i see that the method is called !
// Instead of self i tried even an outlet connected to the custom view.

}

我通过其他类调用ViewController方法的目的是:

1)#import "ViewController.h"

2)进入IBAction我做了一个新的ViewController:

ViewController *newIstanceOfViewController = [[ViewController alloc] init]

3)[newIstanceOfViewController redrawView]

日志告诉我setNeedsDisplay被调用但是没有!为什么?我忘记了初始化或子视图的东西?感谢


此处的原始代码(由语言编写的不同名称,相同的语法)

    //  Controller.h

#import <Cocoa/Cocoa.h>

@interface Controller : NSView {
    IBOutlet NSView *tastierinoView;
}
- (void) aggiornaTastierinoView;

@end


//  Controller.m

#import "Controller.h"

@implementation Controller

//Contatore numero volte disegno view
int contatore = 0;

- (id)initWithFrame:(NSRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code here.
        tastierinoView = [[NSView alloc] init];

    }
    return self;
}

- (void) aggiornaTastierinoView { //THIS IS THE METHOD TO CALL REDRAW
    [tastierinoView setNeedsDisplay:YES];
    NSLog(@"Chiamo setneedsDisplay\n\n");
}

- (void)drawRect:(NSRect)dirtyRect
{
    contatore++;
    NSLog(@"La view è stata disegnata %d volte\n\n",contatore);
    [super drawRect:dirtyRect];

    // Drawing code here.
    NSBezierPath* percorso = [NSBezierPath bezierPath];
    [[NSColor cyanColor] set];

    [percorso moveToPoint:NSMakePoint(150, 150)];
    [percorso lineToPoint:NSMakePoint(250, 150)];

    [percorso setLineWidth:5.0];
    [percorso stroke];

}

@end

//  ManipolatorePin.h

#import <Foundation/Foundation.h>

@interface ManipolatorePin : NSObject {
    IBOutlet NSWindow *finestraPrincipaleWindow;
    IBOutlet NSTextField *codiceTextField;
    NSArray *coordinate_x;
    NSArray *coordinate_y;
    //L'array sotto riportato serve, tramite un ciclo for, a salvare il codice pin spezzato in singoli numeri che corrisponderanno al punto.
    NSMutableArray *numeroAllaIndexArray;
}

- (IBAction)aggiornaTastierino:(id)sender;

@end

//  ManipolatorePin.m


#import "ManipolatorePin.h"
#import "Controller.h"

@implementation ManipolatorePin



- (void)awakeFromNib {
    coordinate_x = [[NSArray alloc] initWithObjects:@"150",@"50",@"150",@"250",@"50",@"150",@"250",@"50",@"150",@"250", nil];
    coordinate_y = [[NSArray alloc] initWithObjects:@"50",@"150",@"150",@"150",@"250",@"250",@"250",@"350",@"350",@"350", nil];


    numeroAllaIndexArray = [[NSMutableArray alloc] init];

    NSLog(@"Array coordinate iniziallizato.\nTest:(%@) -> deve risultare \"50\"\n\n",[coordinate_x objectAtIndex:4]);
}

- (IBAction)aggiornaTastierino:(id)sender {
    NSString *codiceString = [[NSString alloc] initWithFormat:[NSString stringWithFormat:@"%@",[codiceTextField stringValue]]];
    NSLog(@"codiceTextField = %@", codiceString);

    int lunghezzaCodiceString;
    NSLog(@"Il codice risulta essere composto da (%d) numeri\n\n",[codiceString length]);

    //Svuoto array
    [numeroAllaIndexArray removeAllObjects];

    for (lunghezzaCodiceString = 0; lunghezzaCodiceString < [codiceString length]; lunghezzaCodiceString++) {
        //Compilo array (Ci provo ahah)
        NSString *carattereDelCodiceStringInEsame = [[NSString alloc] init];
            carattereDelCodiceStringInEsame = [codiceString substringWithRange:NSMakeRange(lunghezzaCodiceString,1)];

        NSLog(@"Aggiungo il numero (%@) all'array 'numeroAllaIndexArray'",carattereDelCodiceStringInEsame);

            [numeroAllaIndexArray addObject:carattereDelCodiceStringInEsame];
    }

    //DEBUG - DA QUI IN POI E' CANCELLABILE
    NSLog(@"\n\nCiclo for termitato\nProcesso concluso con successo\n\n\nContenuto array:");
    int conteggioArray;
    for (conteggioArray = 0; conteggioArray < [numeroAllaIndexArray count] ; conteggioArray++ ) {
        NSLog(@"index (%d) -> (%@)",conteggioArray,[numeroAllaIndexArray objectAtIndex:conteggioArray]);
        NSLog(@"\n\n");
    }
    //FINE DEBUG

    ///////////////HERE THE INSTANCE TO CALL THE CONTROLLER
    Controller *istanzaGestionaleController = [[Controller alloc] init];
    [istanzaGestionaleController aggiornaTastierinoView];


}

@end

1 个答案:

答案 0 :(得分:2)

听起来你有两个不相关的ViewController实例。您需要在实际上在屏幕上有视图的实例上调用redrawView。

在你的类(不是NSViewController)中,创建一个如下属性:

  @property (nonatomic, readwrite, weak) NSViewController *vc;

实例化类时:

  YourClass *yourInstance = [[YourClass alloc] init];

指定vc的值:

  yourInstance.vc = self; // self is your NSViewController instance

然后,当您想要触发重绘时,将命令传递给另一个类中的self.vc。