UILabel lineBreakModeを設定して単語を分割し、壊れた単語にハイフンを追加するにはどうすればよいですか?
壊れたwo-のラベル
rdは次のようになります
ここでマットの答えを詳しく説明します: https://stackoverflow.com/a/16502598/196358 NSAttributedStringとNSParagraphStyleを使用して実行できます。下記参照:
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.hyphenationFactor = 1.0f;
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:titleString attributes:@{ NSParagraphStyleAttributeName : paragraphStyle }];
self.titleLabel.attributedText = attributedString;
これにより、ハイフンを使用して単語の途中の論理的な場所でラベルが壊れます。見栄えがよく、とても簡単です。 iOS 6.0が必要ですが、私は7.0でしか試していません。
Swift 4.0
let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.hyphenationFactor = 1.0
let hyphenAttribute = [
NSAttributedStringKey.paragraphStyle : paragraphStyle,
] as [NSAttributedStringKey : Any]
let attributedString = NSMutableAttributedString(string: "Your String", attributes: hyphenAttribute)
self.yourLabel.attributedText = attributedString
Swift 3.0
let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.hyphenationFactor = 1.0
let attributedString = NSMutableAttributedString(string: “Your String”, attributes: [NSParagraphStyleAttributeName:paragraphStyle])
self.yourLabel.attributedText = attributedString
ストーリーボードから
locale
属性キーを追加することが重要な場合があります。
NSString *lorem = @"Lorem ipsum <et cetera>.";
NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
paragraph.hyphenationFactor = 1;
paragraph.alignment = NSTextAlignmentJustified;
paragraph.lineBreakMode = NSLineBreakByWordWrapping;
self.label.attributedText = [[NSAttributedString alloc] initWithString:lorem attributes:@{
NSFontAttributeName: [UIFont preferredFontForTextStyle:UIFontTextStyleBody],
NSForegroundColorAttributeName: [UIColor darkGrayColor],
NSParagraphStyleAttributeName: paragraph,
@"locale": @"la", // Latin, use @"en-US" for American English, for example.
}];
受け入れられたので削除できませんが、今日のPOVからは間違っています。
EARLIERUILabelはハイフネーションを提供しませんでした。
今日はNSAttributedString(ios6 +)を介して実行されます