gpt4 book ai didi

objective-c - 是否可以在没有任何按钮的情况下创建 UIAlertView?

转载 作者:行者123 更新时间:2023-12-01 18:25:40 25 4
gpt4 key购买 nike

我需要帮助 UIAlertView :-)。目前我有一个 UIAlertView当用户使用 -(void)motionEnded: 摇动设备时显示功能。我想使用 NSTimer 使警报 View 在 0.5 秒后消失所以我不需要警报 View 底部的任何按钮来关闭它。有没有办法在没有任何按钮的情况下创建 UIAlertView? [用下图中的箭头删除空格的方法?]

这是代码:

- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
resetAlert = [[UIAlertView alloc] initWithTitle:@"Reset!"
message:nil
delegate:nil
cancelButtonTitle:nil
otherButtonTitles:nil, nil];
[resetAlert show];

alertHideTimer = [NSTimer scheduledTimerWithTimeInterval:10.5 target:self selector:@selector(dismissWithClickedButtonIndex:animated:) userInfo:nil repeats:NO];

self.label.text = @"0";
numero = 0;
[self.label2 setHidden:YES];
}

enter image description here

最佳答案

是的。请尝试以下操作:iToast

关于objective-c - 是否可以在没有任何按钮的情况下创建 UIAlertView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14011752/

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