私はサブクラスUITableViewCell
化しており、次の- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
ようなインスタンス変数を設定しています。
_image = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"image.png"]]
Appleはとでアクセサを使用しないことを推奨しているため、私はアクセサを使用していませinit
んdealloc
。
ここまでは順調ですね。userInteractionEnabled
私の質問は、画像に設定したい_imageを設定した後ですYES
。ゲッターでそれを行うべきですか、それともivarを直接使用するべきですか?
self.image.userInteractionEnabled = YES;
または
_image.userInteractionEnabled = YES;
どのスタイルを使用するのが好ましいですか?