UIActionSheet/UIAlertController 多行文字
UIActionSheet/UIAlertController multiline text
这是我写的用于显示的代码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];
这就是我使用它得到的结果:
显然,第二个选项更长,因此尺寸变小以适应宽度。
但是我希望所有选项的字体大小都相同,这让我有了多行。还尝试使用 UIAlertController
但无法设置多行文本。
如何做到这一点?
标准 UIAlertController
或 UIAlertView
无法做到这一点。
我建议你缩短它。为什么不发出警报并输入如下内容:
Do you want to update the response only for this instance or for all
activities in this series.
答案如下:
- Only this instance
- All activities
在 iOS 10:
如果你想把它应用到所有的UIAlertController,你可以使用这几行代码:
[[UILabel appearanceWhenContainedIn:[UIAlertController class], nil] setNumberOfLines:2];
[[UILabel appearanceWhenContainedIn:[UIAlertController class], nil] setFont:[UIFont systemFontOfSize:9.0]];
将其放入 AppDelegate 的 didFinishLaunchingWithOptions 方法中。
这似乎适用于 iOS 10 和 Swift 3.1:
UILabel.appearance(whenContainedInInstancesOf: [UIAlertController.self]).numberOfLines = 2
试试这个
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
这是我写的用于显示的代码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];
这就是我使用它得到的结果:
显然,第二个选项更长,因此尺寸变小以适应宽度。
但是我希望所有选项的字体大小都相同,这让我有了多行。还尝试使用 UIAlertController
但无法设置多行文本。
如何做到这一点?
标准 UIAlertController
或 UIAlertView
无法做到这一点。
我建议你缩短它。为什么不发出警报并输入如下内容:
Do you want to update the response only for this instance or for all activities in this series.
答案如下:
- Only this instance
- All activities
在 iOS 10:
如果你想把它应用到所有的UIAlertController,你可以使用这几行代码:
[[UILabel appearanceWhenContainedIn:[UIAlertController class], nil] setNumberOfLines:2];
[[UILabel appearanceWhenContainedIn:[UIAlertController class], nil] setFont:[UIFont systemFontOfSize:9.0]];
将其放入 AppDelegate 的 didFinishLaunchingWithOptions 方法中。
这似乎适用于 iOS 10 和 Swift 3.1:
UILabel.appearance(whenContainedInInstancesOf: [UIAlertController.self]).numberOfLines = 2
试试这个
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