UIActionSheet / UIAlertController多行文本

时间:2015-10-19 13:25:41

标签: ios uiactionsheet uialertcontroller

这是我写的代码UIActionSheet

actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"updateresponseforrecurring", nil) delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", nil) destructiveButtonTitle:nil otherButtonTitles:
                   NSLocalizedString(@"updateresponseonlyforthis", nil),
                   NSLocalizedString(@"updateresponseforallactivities", nil),
                   nil];
    actionSheet.tag = 2;
    [actionSheet showInView:[UIApplication sharedApplication].keyWindow];  

这就是我使用它:

enter image description here

显然,第二个选项更长,因此尺寸变小以适应宽度 但我希望所有选项都使用相同的字体大小,这样我就可以使用多行。还尝试使用UIAlertController但无法设置多行文字。 怎么做到这一点?

4 个答案:

答案 0 :(得分:18)

这似乎适用于iOS 10和Swift 3.1:

UILabel.appearance(whenContainedInInstancesOf: [UIAlertController.self]).numberOfLines = 2

答案 1 :(得分:2)

使用标准UIAlertControllerUIAlertView无法做到这一点。 我建议你缩短它。你为什么不发出警报并输入这样的内容:

  

是否只想更新此实例或所有实例的响应   本系列活动。

答案是:

  
      
  • 仅此实例
  •   
  • 所有活动
  •   

答案 2 :(得分:1)

在iOS 10中:

如果要将其应用于所有UIAlertController,可以使用以下代码行:

[[UILabel appearanceWhenContainedIn:[UIAlertController class], nil] setNumberOfLines:2];
[[UILabel appearanceWhenContainedIn:[UIAlertController class], nil] setFont:[UIFont systemFontOfSize:9.0]];

将它放在AppDelegate的didFinishLaunchingWithOptions方法中。

答案 3 :(得分:0)

试试这个

let alert = UIAlertController(title: title,
                              message: "you message go here",
                              preferredStyle: 
UIAlertControllerStyle.alert)

let cancelAction = UIAlertAction(title: "Cancel",
                                 style: .cancel, handler: nil)

alert.addAction(cancelAction)
self.present(alert, animated: true, completion: nil)

UILabel.appearance(whenContainedInInstancesOf: 
[UIAlertController.self]).numberOfLines = 0

UILabel.appearance(whenContainedInInstancesOf: 
[UIAlertController.self]).lineBreakMode = .byWordWrapping