zoukankan      html  css  js  c++  java
  • 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];

  • 相关阅读:
    bzoj 5455
    hdu 6705
    hdu 6706
    斜率优化
    bzoj3672
    bzoj1367
    bzoj2118
    bzoj2337
    Codeforces 1077D Cutting Out(二分答案)
    Codeforces 1079C Playing Piano(记忆化搜索)
  • 原文地址:https://www.cnblogs.com/KiVen2015/p/13602263.html
Copyright © 2011-2022 走看看