IOS开发:UIAlertView设置文字左对齐

今天碰到一个设置UIAlertView中间Message的文本左对齐的问题,因为iphoneSDK默认是居中对齐的,而且没有提供方法设置文本对齐接口,解决这个问题的思路很简单,就是在Delegate:

- (void)willPresentAlertView:(UIAlertView *)alertView;

获取UIAlertView上面的Message控件,它其实也是一个UILable控件,然后设置其textAlignment的属性即可。

代码如下:

#pragma mark -UIAlertViewDelegate

- (void)willPresentAlertView:(UIAlertView *)alertView{

    UIView * view = [alertView.subviews objectAtIndex:2];

    if([view isKindOfClass:[UILabel class]]){

        UILabel* label = (UILabel*) view;

        label.textAlignment = UITextAlignmentLeft;

    }

}

这里要注意的是,Message的UILable alertView.subviews里面是第3个元素,第一个元素是一个UIImageView(背景),UILable(标题),UILable(Message),UIButton(Cancel)...(如果还有的话以此类推)。


你可能感兴趣的:(ios,ios,ios,uialertview)