iOS-----------特殊字符 双引号

UIAlertController * alertController = [UIAlertController alertControllerWithTitle:@"是否打开“微信”" message:@"" preferredStyle:UIAlertControllerStyleAlert];


UIAlertAction * cancleAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

}];
[alertController addAction:cancleAction];




UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"打开" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        }];

[alertController addAction:sureAction];
[self presentViewController:alertController animated:YES completion:nil];

原文地址:https://www.cnblogs.com/KiVen2015/p/13602263.html