0
点赞
收藏
分享

微信扫一扫

UIAlertView 提示弹窗

诗远 2022-07-14 阅读 71

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"没有收藏产品" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:nil, nil];
alert.delegate=self;
[alert show];
[alert dismissWithClickedButtonIndex:3 animated:YES];

举报

相关推荐

0 条评论