gpt4 book ai didi

iphone - 如何在保存操作后弹出临时对话框?

转载 作者:行者123 更新时间:2023-12-03 19:19:55 27 4
gpt4 key购买 nike

您好,只是想知道如何添加一个短暂的对话框,说明已执行操作。

例如,当用户单击“保存”时,您会弹出“已保存”窗口,并且窗口会在不到一秒的时间内自行消失?

提前致谢

最佳答案

使用像这样的操作表:

/*  present a dialog  */
-(void)showDialog {
loadingActionSheet = [[UIActionSheet alloc] initWithTitle:@"Something was saved!" delegate:nil cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:nil];
[loadingActionSheet showInView:self.view];
[NSTimer scheduledTimerWithTimeInterval:1.5f target:self selector:@selector(closeActionSheet:) userInfo:nil repeats:NO];
}


/* close the actionsheet */
-(void)closeActionSheet:(id)sender {
[loadingActionSheet dismissWithClickedButtonIndex:0 animated:YES];
}

在 header 中定义 UIActionSheet *loadingActionSheet; ,并使用 @property@synthesize

您还需要在 header 中实现 UIActionSheetDelegate

关于iphone - 如何在保存操作后弹出临时对话框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4393115/

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