gpt4 book ai didi

ios - 如何创建警报,在 iOS 上使用按钮从底部滑动?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:00:51 25 4
gpt4 key购买 nike

如何在 iOS 上创建类似 Instagram 取消关注提醒(两个按钮、图像和消息)的提醒?是否有任何现成的组件或我应该从头开始开发它?这是一个屏幕截图:

enter image description here

最佳答案

有一个实现(UIAlertController),但没有图像。

这是一个工作示例:

UIAlertController* deleteAlert = [UIAlertController alertControllerWithTitle:@"Unfollow?"
message:
preferredStyle:UIAlertControllerStyleActionSheet];

UIAlertAction* unfollowAction = [UIAlertAction actionWithTitle:@"Unfollow" style:UIAlertActionStyleDestructive
handler:^(UIAlertAction * action) {
//Code to unfollow
}];
UIAlertAction* cancelAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"Cancel", nil) style:UIAlertActionStyleCancel
handler:^(UIAlertAction * action) {

}];

[deleteAlert addAction:unfollowAction];
[deleteAlert addAction:cancelAction];
[self presentViewController:deleteAlert animated:YES completion:nil];

您可以在这篇文章中找到有关如何将图像添加到 UIAlertController 的更多信息:

Add Image to UIAlertAction in UIAlertController

关于ios - 如何创建警报,在 iOS 上使用按钮从底部滑动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36116490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com