2016-11-21 12 views
0

言語isArabicのIOS 10で、UIAlertActionテキストの配置に問題があります。UIAlertactionボタンのテキスト配置のバグ?

このように表示され、時にはアクションシート: enter image description here

、それがこのように表示されますいくつかの回: enter image description here

この問題だけで私はいつもtextAlignmetCenterを設定することができるかIOS 10、と?

私が整列し、UIAlertControllersのテキストをスタイリングの両方のために、以下のことを正常に使用しているおかげで

答えて

0

let paragraphStyle = NSMutableParagraphStyle() 
paragraphStyle.alignment = NSTextAlignment.Center 

let messageText = NSMutableAttributedString(
    string: "The message you want to display", 
    attributes: [ 
     NSParagraphStyleAttributeName: paragraphStyle, 
     NSFontAttributeName : UIFont.preferredFontForTextStyle(UIFontTextStyleBody), 
     NSForegroundColorAttributeName : UIColor.blackColor() 
    ] 
) 

myAlert.setValue(messageText, forKey: "attributedMessage") 

あなたが"attributedTitle"を使用する場合は、タイトルと同様のことを行うことができ、代わりに"attributedMessage"

関連する問題