码迷,mamicode.com
首页 >  
搜索关键字:alertview    ( 126个结果
多线程中UIAlertView无法消失的问题
场景是这样的,点击按钮,开辟新线程,弹出alertView。然后调用dismissWithClickedButtonIndex让其消失。 1 /** 定义按钮 */ 2 -(void)setupAllBtns{ 3 UIButton *btn2 = [UIButton buttonWit...
分类:编程语言   时间:2015-07-27 18:10:50    阅读次数:202
Xcode自定义alertview
自定义的ALertView,方便自己个性化设计...
分类:其他好文   时间:2015-07-24 18:21:31    阅读次数:150
ios8 定位授权问题 (plist文件设置字段 手动调用授权仍然不能弹出alertview窗口)
ios8 的地图定位和以前版本有了很大不同,主要是加入了询问用户是否授权定位服务.参照网上其他人的做法1 plist文件加入两个字段NSLocationAlwaysUsageDescription NSLocationWhenInUseUsageDescription2 调用requestAlway...
分类:移动开发   时间:2015-07-21 14:33:51    阅读次数:141
ios实现带有输入框的AlertView
1,实现一个alertView1 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"" message:@"请输入Wi-Fi密码" delegate:self cancelButtonTitle:@"取消" otherB...
分类:移动开发   时间:2015-07-17 20:35:22    阅读次数:241
UITableView刷新问题
UITableView刷新分为整体刷新和局部刷新,必须先修改数据,然后再刷新。1)整体刷新:// 先修改模型数据 NSString *text = [alertView textFieldAtIndex:0].text; shop *shop = _shops[row]; sh...
分类:其他好文   时间:2015-07-14 15:12:37    阅读次数:174
自定义Lable提示框(渐变动画)
- (void)viewDidLoad { [super viewDidLoad]; // 移除按钮不能使用,开始默认 self.removeBtn.enabled = NO; self.alertView.textAlignment = UITextAlignmen...
分类:其他好文   时间:2015-07-14 05:58:33    阅读次数:142
iOS7和iOS8之后的弹窗的使用
在iOS7之前的弹窗都是使用的传统的UIAlertView,代码如下://创建弹框 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"提示" message:@"输入的数字不合理" delegate:nil cancelBut....
分类:移动开发   时间:2015-07-09 00:42:26    阅读次数:183
遮罩 HUD 指示器 蒙板 弹窗
遮罩 HUD 指示器 蒙板 弹窗UIAlertView的使用UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"警告" message:@"是否要删除它?" delegate:self cancelButtonTitle:@"是...
分类:其他好文   时间:2015-07-09 00:12:34    阅读次数:294
文章标题
UIAlertView,UIActionSheet的使用主要功能:用于提示用户相关信息,并与用户进行交互,比如给用户提供选择或确认。UILertView常用属性和初始化放法UIAlertViewStyle alertViewStyle 1.UIAlertViewStyleDefault = 0;//默认 2.UIAlertViewStyleSecureTextInput;//密...
分类:其他好文   时间:2015-07-05 09:37:28    阅读次数:84
iOS_11_tableViewCell使用alertView变更数据
最后效果图:Girl.h//// Girl.h// 11_tableView的使用_红楼梦//// Created by beyond on 14-7-26.// Copyright (c) 2014年 com.beyond. All rights reserved.//#import @i...
分类:移动开发   时间:2015-07-03 18:58:13    阅读次数:251
126条   上一页 1 ... 5 6 7 8 9 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!