- Example:
- (BOOL) application: (UIApplication *) application didFinishLaunchingWithOptions:(NSDictionary *) launchOptions {
}
- Description:
- - (Minus sign) : represents instance method, use + for class method
- (BOOL) : Method return type
- application: Method name first part
- (UIApplication *) : parameter type first part
- application : parameter variable name
- didFinishLaunchingWithOptions: Method name second part
- (NSDictionary *) : parameter type first second part
- launchOptions : parameter variable name second part
No comments:
Post a Comment