How to align messages in UIAlertView?

前端 未结 3 741
时光说笑
时光说笑 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

    This is just a slightly simplified version of the previous answer but I like to keep things simple. :)

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

提交回复
热议问题