UIAlertView 绝地灬酷狼 2022-08-01 11:07 109阅读 0赞 // // UIAlertViewController.m // AppUI组件学习 // // Created by 麦子 on 15/6/18. // Copyright (c) 2015年 麦子. All rights reserved. // #import "UIAlertViewController.h" @interface UIAlertViewController () @end @implementation UIAlertViewController - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor blackColor]; [self createView:self.view]; } - (void)createView:(id)uiView{ UIView *view = (UIView *)uiView; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"用户名或密码不对" delegate:self cancelButtonTitle:@"是" otherButtonTitles:@"否", nil]; [view addSubview:alert]; [alert show]; alert.delegate = self; } - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{ if (buttonIndex == 0) { NSLog(@"你点击了是"); }else if (buttonIndex == 1){ NSLog(@"点击了否"); } } @end
相关 UIAlertView选择 - (void)alertView:(UIAlertView )alertView clickedButtonAtIndex:(NSInteger)buttonInde ゝ一世哀愁。/ 2023年10月18日 14:11/ 0 赞/ 70 阅读
相关 UIAlertView添加textField \- (IBAction)Open:(id)sender \{ UIAlertView\ dialog = \[\[UIAlertView alloc\] initWithT 迈不过友情╰/ 2023年10月18日 08:41/ 0 赞/ 49 阅读
相关 iOS安全之【 监听物理截图来自动生成截图并跳转到反馈页面进行显示】(截图内容包括系统的弹框视图UIAlertController和UIAlertView) | 蓄力计划 文章目录 引言 I、反馈页面的开发步骤 1.1、 监听截图通知 1.2、 截图方法: 1.2.1 方法一: 截图 女爷i/ 2022年10月25日 04:40/ 0 赞/ 231 阅读
相关 iOS根据视图尺寸获取视图截屏【截图内容包括UIAlertController和UIAlertView】 文章目录 引言 I、开发步骤 1.1 第一步获取到alterView所在的window。 1.2 第二步 遍历 window数组 淡淡的烟草味﹌/ 2022年10月25日 01:27/ 0 赞/ 186 阅读
相关 iOS开发-ios7 UIAlertView自定义 之前一个项目适配ios7之后,发现原先的UIAlertView无法正常显示。 后来发现ios7里面原生态的UIAlertView不支持自定义了。 然后就去github上找了 - 日理万妓/ 2022年09月20日 12:45/ 0 赞/ 188 阅读
相关 UIAlertView用法 UIAlertView用法 原文链接:[http://blog.sina.com.cn/s/blog\_bf9843bf0101fahf.html][http_blog. 怼烎@/ 2022年09月18日 12:47/ 0 赞/ 119 阅读
相关 ios--block用法之UIAlertView控件的修改 原文转自:[http://blog.csdn.net/w183328253/article/details/8057141][http_blog.csdn.net_w18332 怼烎@/ 2022年08月10日 17:45/ 0 赞/ 140 阅读
相关 UIAlertView // // UIAlertViewController.m // AppUI组件学习 // // Created by 麦子 on 绝地灬酷狼/ 2022年08月01日 11:07/ 0 赞/ 110 阅读
还没有评论,来说两句吧...