美文网首页
iOS UIView添加提示框

iOS UIView添加提示框

作者: 张天奇天张 | 来源:发表于2021-12-30 19:57 被阅读0次

    UIAlertController *alvc = [UIAlertController alertControllerWithTitle:@"title" message:nil preferredStyle:(UIAlertControllerStyleAlert)];

            UIAlertAction*confirmAction = [UIAlertActionactionWithTitle:@"设置"style:UIAlertActionStyleDefaulthandler:^(UIAlertAction*_Nonnullaction) {

            }];

            [alvcaddAction:confirmAction];

            UIAlertAction*cancelAction = [UIAlertActionactionWithTitle:@"取消"style:(UIAlertActionStyleDestructive)handler:^(UIAlertAction*_Nonnullaction) {

            }];

            [alvcaddAction:cancelAction];

            UIViewController *tempVc = [[UIViewController alloc] init];

            [selfaddSubview:tempVc.view];

            [tempVcpresentViewController:alvc animated:YES completion:^{

                [tempVc.viewremoveFromSuperview];

            }];

    相关文章

      网友评论

          本文标题:iOS UIView添加提示框

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