美文网首页
关于iOS AlertView的文字(messageLabel)

关于iOS AlertView的文字(messageLabel)

作者: 三浦蒼介 | 来源:发表于2019-12-11 09:36 被阅读0次

话不多说 直接上代码

NSString * message = @"sfsdsdfssfsdfsdfsdsafwerwokomibonosmfossfwe";
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"温馨提示" message:message delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确认", nil];
alertView.alertViewStyle = UIAlertViewStyleDefault;
UIAlertController *alertVC = [alertView valueForKey:@"_alertController"];
NSArray *subViews = alertVC.view.subviews[0].subviews[0].subviews[0].subviews[0].subviews[0].subviews;
UILabel *titleLb = subViews[1];//title
UILabel *messageLb = subViews[2];//message
messageLb.textAlignment = NSTextAlignmentLeft;
[alertView show];

相关文章

网友评论

      本文标题:关于iOS AlertView的文字(messageLabel)

      本文链接:https://www.haomeiwen.com/subject/dcntrctx.html