Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果 UIAlertView 包含一定数量的文本,则文本显示会自动更改为具有滚动条。我希望此文本居中对齐。
搜索解决方案提供了这个 SO 响应。但是,这不适用于包含滚动条的 UIAlertView。
如何对齐此类警报中的文本?
我的建议是不要这样做。如果 Apple 更改 UIAlertView 的结构方式,它可能会因任何 iOS 更新而中断。话虽如此,您可以这样做:
for(id subview in alertView.subviews) { if([subview isKindOfClass:[UITextView class]]) { [(UITextView *)subview setTextAlignment:NSTextAlignmentCenter]; } }