这可能听起来很愚蠢但为什么Objective-C中的某些函数/方法使用括号而不是方括号?
E.g。为什么它不是[someObject NSLog:@“Hello World!”];?
我何时应该使用括号而不是方括号?感谢。
答案 0 :(得分:11)
圆括号用于C函数(如CGRectMake),而括号用于objective-c方法。
参见示例:
// Method to create C Structure
CGRect frame = CGRectMake( 0, 0, 100, 100 );
// Objective-C method call (sending message)
UIButton *button = [[UIButton alloc] initWithFrame:frame];