コードの整形は手間がかかる 代入文って10行とか20行とかになると、一気に見づらくなりますよね。 特に、Interface Builder使わないでコードでUIを組み立てたりしてると、プロパティの設定処理で平気で100行になります。 例えばこんなコード・・ cell.backgroundView.layer.shadowColor = [UIColor blackColor].CGColor; cell.backgroundView.layer.shadowOffset = CGSizeMake(0, 4); cell.backgroundView.layer.shadowOpacity = 0.8; cell.backgroundView.layer.shadowRadius = 10; cell.backgroundView.layer.masksToBounds = NO; cell