ios – 在Obj-C中使用Switch语句

前端之家收集整理的这篇文章主要介绍了ios – 在Obj-C中使用Switch语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
下面是一个Switch / Case语句,当无法发送电子邮件显示错误消息.在大多数情况下,一切似乎都是正确的,但是当我将UIAlertView放入Switch语句时,我在 Xcode中收到错误
switch (result) {
    case MFMailComposeResultCancelled:
        NSLog(@"Result: Mail sending canceled");
        break;
    case MFMailComposeResultFailed:
        NSLog(@"Result: Mail sending Failed");
        UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Sending Failed"
                                                          message:@"The email could not be sent."
                                                         delegate:nil
                                                cancelButtonTitle:@"OK"
                                                otherButtonTitles:nil];

        [message show];
        break;
    default:
        NSLog(@"Result: Mail not sent");
        break;
}

为什么在将代码放入案例时会产生错误

解决方法

把它放在括号中:
case MFMailComposeResultFailed: {
    NSLog(@"Result: Mail sending Failed");
    UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Sending Failed"
                                                      message:@"The email could not be sent."
                                                     delegate:nil
                                            cancelButtonTitle:@"OK"
                                            otherButtonTitles:nil];

    [message show];
    break;
  }
原文链接:https://www.f2er.com/iOS/331115.html

猜你在找的iOS相关文章