gpt4 book ai didi

ios - 如何在 SCLAlertView showWaiting 警报后重定向到主页?

转载 作者:行者123 更新时间:2023-11-28 23:59:00 25 4
gpt4 key购买 nike

我想显示一个 SCLAlertView 警报,几秒钟后,它将消失并重定向到其他 View Controller 。但是现在我所做的是点击“完成”按钮后,只能执行操作。任何想法?请帮忙。

这是我的代码:-

-(IBAction)submitButtonDidPressed:(id)sender {
NSString *userName = [NSString stringWithFormat:@"Welcome back %@", txtUsername.text];

SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert addButton:@"Done" target:self selector:@selector(clickLogin:)];
alert.customViewColor = ThemeBlueColor;
[alert showWaiting:self title:@"Welcome" subTitle:userName closeButtonTitle:nil duration:2.0f ];
}

-(void) clickLogin:(UIButton*)sender
{
int index = 0;
self.tabBarController.selectedIndex = index;
[self.tabBarController.viewControllers[index] popToRootViewControllerAnimated:NO];

}

最佳答案

您可以使用 alertIsDismissed 像这样调用导航:

 -(IBAction)submitButtonDidPressed:(id)sender {
NSString *userName = [NSString stringWithFormat:@"Welcome back %@", txtUsername.text];

SCLAlertView *alert = [[SCLAlertView alloc] init];
[alert addButton:@"Done" target:self selector:@selector(clickLogin:)];
alert.customViewColor = ThemeBlueColor;
[alert showWaiting:self title:@"Welcome" subTitle:userName
closeButtonTitle:nil duration:3.0f ];


[alert alertIsDismissed:^{
[self clickLogin:nil];
}];

}

关于ios - 如何在 SCLAlertView showWaiting 警报后重定向到主页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50206204/

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