Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to build an iPhone app. I created a
method like this:

- (void)score {
    // some code
}

and I have tried to call it in an other method like this:

- (void)score2 {
    @selector(score);
}

But it does not work. So, how do I call a method correctly?

share|improve this question

4 Answers

To send an objective-c message in this instance you would do

[self score];

I suggest you read the Objective-C programming guide Objective-C Programming Guide

share|improve this answer

I suggest you read The Objective-C Programming Language. The part about messaging is specifically what you want here, but the whole thing will help you get started. After that, maybe try doing a few tutorials to get a feel for it before you jump into making your own apps.

share|improve this answer
2  
@fijiaaron: I didn't say "RTFM." I said that this question was on such an elementary level that if he had to ask it, he was going to find his experience in Objective-C very frustrating and reading that introductory guide was a good start down the right path. Teach a man to fish, you know. Personally, I find this kind of answer much more helpful than a code-vomit of unknown quality. – Chuck Oct 12 '11 at 15:40

I think what you're trying to do is:

-(void) score2 {
    [self score];
}

The [object message] syntax is the normal way to call a method in objective-c. I think the @selector syntax is used when the method to be called needs to be determined at run-time, but I don't know objective-c well enough to give you more information on that.

share|improve this answer
@selector gives you the "name" of a method in a form that Objective-C can use to send messages. It's used somewhat analogously to a function pointer. – Chuck Feb 26 '09 at 19:23

Use this:

[self performSelector:@selector(score) withObject:nil afterDelay:0.2];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.