I have the following code which should make drawFrame be called every frame but it doesn't:

- (void)viewDidLoad
{
    [super viewDidLoad];
    displayLink = [viewReference.window.screen displayLinkWithTarget:(self) selector:@selector(drawFrame)];
    [displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
}


- (void) drawFrame:(CADisplayLink*)sender
{
    thel.text = @"test";
}

dispayLink is a pointer to CADisplayLink. thel is connected to a label in my view. This view is connected to viewReference. self is the ViewController. drawFrame is declared

- (void) drawFrame:(CADisplayLink*)sender;

thel.text can be set when I test it in viewDidLoad.

It seems drawFrame is never called. The application is based on Xcode 4.2s empty application template with a custom storyboard file (I added it afterwards rather than selecting use storyboard on creation). It is empty besides the view controller, the view and the label.

I'm new to this. When calling [[NSRunLoop currentRunLoop] run] iOS 5.0 Simulator doesn't display the app at all. The currentRunLoop should be the default main runLoop anyway.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Perhaps you need to set the CADisplaylink 'frameInterval' property:

displayLink.frameInterval = someRate (1-60);
link|improve this answer
this didn't do it unfortunately. – Lars Hansen Jan 22 at 19:56
That's odd. Oh - I just noticed viewReference.window.screen in you code. Not sure what that is about. This is the way I do it.(sry @ the formatting. Good luck!) displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(barEvent)]; displayLink.frameInterval = 5; [displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSDefaultRunLoopMode]; – skinnyTOD Jan 22 at 23:46
This works! Thank you very much! screen is the property of the storyboards view. Every text I read sent the message to the screen. – Lars Hansen Jan 24 at 17:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.