本文主要是介绍iOS开发 - UIAlertController 弹框提醒,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
传统的alertView
- (void)alertView
{UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"你的操作时非法的,您要继续吗" delegate:nil cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];alert.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;[alert show];
}
传统的actionSheet
- (void)actionSheet
{UIActionSheet *sheet = [[UIActionShee
这篇关于iOS开发 - UIAlertController 弹框提醒的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!