my ui structure is like NSWindow -> NSViewController -> NSView(parent) -> NSView(target view).
the target view is dragged from XIB file, rather than addSubview
. The drawRect
function will be called when the NSView(parent) is shown, but after that i want to call drawRect again programmatically with setNeedsDisplay
, it doesn't work.
What's wrong with my method?
Anyway, i can use drawRect(view.frame) to implement this, but i think this is not a good idea.
Code:
MyView.m
- (void)drawRect:(NSRect)dirtyRect {
[super drawRect:dirtyRect];
NSLog(@"asasa");
}
...
@property (weak) IBOutlet MyView *titleBarView;
...
-(IBAction)test:(id)sender
{
NSLog(@"%@",self.view.subviews); // contains the titleBarView
NSLog(@"%@",self.titleBarView); // not nil
[self.titleBarView setNeedsDisplay:YES]; // not call drawRect
}
titleBarView is already connected
setNeedsDisplay
of target view? – bluedomesetNeedsDisplay:
. Also, are you sure you're calling it on the view you think you are? Which view is that, the parent or the target? Could it be that your reference to that view isnil
because you didn't connect something (e.g. an outlet) properly? Never calldrawRect
; it won't work right. – Ken Thomases[self.view setNeedsDisplay:YES]
to call drawRect of the NSView(Parent) – jimwan