Why is it that IBAction functions have a semicolon in them right before the curly brackets, while all other functions I am aware of do not?
Why does the asterisk, which I assume is for declaring a the new variable "application", come inside of the parenthesize?
Code:
- (IBAction)click: (id)sender;
{
Why does the asterisk, which I assume is for declaring a the new variable "application", come inside of the parenthesize?
Code:
- (void)applicationDidFinishLaunching: (UIApplication *)application {