我正在开发的应用程序只支持纵向模式。但是,在 iOS8 中,现在弃用的UIAlertView
可以进入横向并显示其他一些小问题。为了解决这个问题,我决定UIAlertController
试一试。它有效,但我有一个新问题,仍然有点烦人。警报不再进入风景,但它确实具有视差运动的东西。我在UIAlertController
的视图中添加了标签和图像,但它们没有视差,这意味着当用户移动手机时它看起来很奇怪。
我正在寻找两个选项,但我找不到其中任何一个选项。
第一个解决方案是禁用视差,看看我们在应用程序的任何地方都不支持它。
第二种解决方案是为标签和图像添加视差支持。
无论如何,这是一段代码:
UIAlertController *welcomeAlertController = [UIAlertController
alertControllerWithTitle:[NSString stringWithFormat:NSLocalizedString(@"Would you like to send %@ a message?", @"This message is displayed after adding a new message receiver. The %@ is the name of the receiver."), self.receiver.name]
message:@"\n\n\n\n\n\n\n\n"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *cancelAction = [UIAlertAction
actionWithTitle:NSLocalizedString(@"Skip", @"Skip: meaning user can skip a certain step.")
style:UIAlertActionStyleCancel
handler:^(UIAlertAction *action)
{
[self cancelButtonPressed];
}];
UIAlertAction *okAction = [UIAlertAction
actionWithTitle:NSLocalizedString(@"Send", @"Send: meaning user can send information to somewhere.")
style:UIAlertActionStyleDefault
handler:^(UIAlertAction *action)
{
[self sendButtonClicked];
}];
[welcomeAlertController addAction:cancelAction];
[welcomeAlertController addAction:okAction];
smsView.frame = CGRectMake(20, 80, 240, 95);
messageBackgroundView.frame = CGRectMake(0, 0, 240, 80);
warningLabel.frame = CGRectMake(20, 170, 240, 40);
warningLabel.textColor = [UIColor blackColor];
[welcomeAlertController.view addSubview:smsView]; // An UIView
[welcomeAlertController.view addSubview:warningLabel];
[self presentViewController:welcomeAlertController animated:YES completion:nil];