Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iPhoneアプリケーションでOHAttributeLabelを使用していますが、警告が表示されます
UITextAlignment is deprecated : You should use setTextAlignment:lineBreakMode:on your NSAttributedString instead
誰かがそれを解決する方法を私に提案してください。
これを試して
[label setTextAlignment:NSTextAlignmentCenter];
その仕事
//ラベルがOHAttributedLabel(サブクラスoh UILabel)へのIBOutletであると仮定します
label.textAlignment = UITextAlignmentJustify;
//これですべてです。OHAttributedLabelが必要なすべてを実行します。