点语法

应该 始终 使用点语法来访问或者修改属性,访问其他实例时首选括号。

推荐:

  1. view.backgroundColor = [UIColor orangeColor];
  2. [UIApplication sharedApplication].delegate;

反对:

  1. [view setBackgroundColor:[UIColor orangeColor]];
  2. UIApplication.sharedApplication.delegate;