次のようなカスタム ボタンがあります。
UIButton *catBtn1 = [UIButton buttonWithType:UIButtonTypeCustom];
catBtn1.frame = CGRectMake(0, 344, 427, 67);
catBtn1.titleLabel.font = categoryFont;
catBtn1.titleLabel.textColor = [UIColor whiteColor];
catBtn1.titleLabel.frame = CGRectMake(52, 21, 150, 15);
catBtn1.titleLabel.textAlignment = UITextAlignmentLeft;
titleLabel
ボタンごとにこれを行わずに、すべてのボタンにこれらすべてのプロパティを設定する簡単な方法はありますか? のインスタンスを割り当てようとUILabel
しましcatBtn1.titleLabel
たが、うまくいきませんでした...