美文网首页
UIAlertController 警告框重写提示文本颜色

UIAlertController 警告框重写提示文本颜色

作者: seventhboy | 来源:发表于2018-01-15 15:47 被阅读11次

    {
    UIAlertController *alertSheetViewController = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
    UIAlertAction *seeAllAction = [UIAlertAction actionWithTitle:@"看全部" style: UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    [self loadData];
    self.genderIndex = 0;
    [button setTitle:self.titles[_genderIndex] forState:UIControlStateNormal];
    }];
    [seeAllAction setValue:[UIColor colorWithHexString:@"00FFCC"] forKey:@"titleTextColor"];
    UIAlertAction *seeGirlsAction = [UIAlertAction actionWithTitle:@"只看女" style: UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    [self loadData];
    self.genderIndex = 1;
    [button setTitle:self.titles[_genderIndex] forState:UIControlStateNormal];
    }];
    [seeGirlsAction setValue:[UIColor colorWithHexString:@"FF33FF"] forKey:@"titleTextColor"];
    UIAlertAction *seeBoysAction = [UIAlertAction actionWithTitle:@"只看男" style: UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    [self loadData];
    self.genderIndex = 2;
    [button setTitle:self.titles[_genderIndex] forState:UIControlStateNormal];
    }];
    [seeBoysAction setValue:[UIColor colorWithHexString:@"3366FF"] forKey:@"titleTextColor"];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style: UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    ;
    }];
    [cancelAction setValue:[UIColor colorWithHexString:@"#333333"] forKey:@"_titleTextColor"];

    [alertSheetViewController addAction:seeAllAction];
    [alertSheetViewController addAction:seeGirlsAction];
    [alertSheetViewController addAction:seeBoysAction];
    [alertSheetViewController addAction:cancelAction];
    [self presentViewController:alertSheetViewController animated:YES completion:nil];
    

    }

    相关文章

      网友评论

          本文标题:UIAlertController 警告框重写提示文本颜色

          本文链接:https://www.haomeiwen.com/subject/qshdoxtx.html