How to align messages in UIAlertView?

前端 未结 3 739
时光说笑
时光说笑 2021-02-04 16:16

i want to know how to set the alignment of delegate message of alert view. anyone has solution, plz reply with some code.

3条回答
  •  执念已碎
    2021-02-04 16:43

    the code below is not work on iOS7, only before iOS7.

    for (UIView *view in alert.subviews) {
        if([[view class] isSubclassOfClass:[UILabel class]]) {
           ((UILabel*)view).textAlignment = NSTextAlignmentLeft;
        }
    }
    

    the question Align message in UIAlertView to left in iOS 7 solve this problem.

提交回复
热议问题