ばかな質問が、何の違いです:iPhone:ほとんどの@selector構文の違い
UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"Join" style:UIBarButtonItemStylePlain
target:self action:@selector(pressJoinButton)];
と
UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"Join" style:UIBarButtonItemStylePlain
target:self action:@selector(pressJoinButton:)];
1はpressJoinButtonであり、他方はpressJoinButtonされている様子がわかります
は
可能重複@セレクタ](http://stackoverflow.com/questions/4953623/when-to-use-a-colon-with-a-selector) –
この質問の回答でおそらく対処しています:http://stackoverflow.com/questions/4953623/when-to-use-a-colon-a-selector – gram