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?
 
     
     
     
     
     
     
     
     
     
     
     
    