场景是这样的,点击按钮,开辟新线程,弹出alertView。然后调用dismissWithClickedButtonIndex让其消失。 1 /** 定义按钮 */ 2 -(void)setupAllBtns{ 3 UIButton *btn2 = [UIButton buttonWit...
分类:
编程语言 时间:
2015-07-27 18:10:50
阅读次数:
202
自定义的ALertView,方便自己个性化设计...
分类:
其他好文 时间:
2015-07-24 18:21:31
阅读次数:
150
ios8 的地图定位和以前版本有了很大不同,主要是加入了询问用户是否授权定位服务.参照网上其他人的做法1 plist文件加入两个字段NSLocationAlwaysUsageDescription NSLocationWhenInUseUsageDescription2 调用requestAlway...
分类:
移动开发 时间:
2015-07-21 14:33:51
阅读次数:
141
1,实现一个alertView1 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"" message:@"请输入Wi-Fi密码" delegate:self cancelButtonTitle:@"取消" otherB...
分类:
移动开发 时间:
2015-07-17 20:35:22
阅读次数:
241
UITableView刷新分为整体刷新和局部刷新,必须先修改数据,然后再刷新。1)整体刷新:// 先修改模型数据 NSString *text = [alertView textFieldAtIndex:0].text; shop *shop = _shops[row]; sh...
分类:
其他好文 时间:
2015-07-14 15:12:37
阅读次数:
174
- (void)viewDidLoad { [super viewDidLoad]; // 移除按钮不能使用,开始默认 self.removeBtn.enabled = NO; self.alertView.textAlignment = UITextAlignmen...
分类:
其他好文 时间:
2015-07-14 05:58:33
阅读次数:
142
在iOS7之前的弹窗都是使用的传统的UIAlertView,代码如下://创建弹框 UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"提示" message:@"输入的数字不合理" delegate:nil cancelBut....
分类:
移动开发 时间:
2015-07-09 00:42:26
阅读次数:
183
遮罩 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
最后效果图: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