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];

posted @ 2020-09-02 16:05  iOS张文权  阅读(701)  评论(0编辑  收藏  举报