本文主要是介绍iOS 几秒后会自动消失提示框,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
tipWithMessage(@"没有数据啦!");//提示弹窗NS_INLINE void tipWithMessage(NSString *message){dispatch_async(dispatch_get_main_queue(), ^{UIAlertView *alerView = [[UIAlertView alloc] initWithTitle:@"提示" message:message delegate:nil cancelButtonTitle:nil otherButtonTitles:nil, nil];[alerView show];[alerView performSelector:@selector(dismissWithClickedButtonIndex:animated:) withObject:@[@0, @1] afterDelay:0.9];});}
这篇关于iOS 几秒后会自动消失提示框的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!