用block将UIAlertView与UIActionSheet统一起来效果1. 将代理方法的实例对象方法转换成了类方法使用2. 要注意单例block不要长期持有,用完就释放掉源码https://github.com/YouXianMing/UIInfomationView//// UIInfom....
分类:
其他好文 时间:
2015-06-23 22:51:18
阅读次数:
112
Xamarin iOS教程之警告视图 Xamarin iOS警告视图 如果需要向用户显示一条非常重要的消息时,警告视图(UIAlertView类)就可以派上用场了。它的功能是把需要注意的信息显示给用户。一般显示一条信息,或者是显示一...
分类:
移动开发 时间:
2015-06-23 16:04:12
阅读次数:
245
一个ViewController里使用了多个带block的UIAlertView时,不容易判断当前AlertView的打开状态。下面的代码可以解决这个问题:#pragma mark 查找当前界面有没有一个AlertView
+(BOOL)isAlert{
for (UIWindow* window in [UIApplication sharedApplication].windows) {...
分类:
移动开发 时间:
2015-06-18 19:45:09
阅读次数:
244
objective-c有两个扩展机制:category和associative。我们可以通过category对已经存在的类添加和扩展方法,但是它有一个很大的局限性,那就是不能扩展属性。于是,就有了专门用来扩展属性的机制:associative。关联对象是Runtimezhong关联对象是Runtime中一个非常实用的特性
associative的主要原理,就是把两个对象相互关联起...
分类:
其他好文 时间:
2015-06-16 16:49:50
阅读次数:
121
效果如下:ViewController.h1 #import 2 3 @interface ViewController : UIViewController4 @property (strong, nonatomic) UIProgressView *progressView;5 6 @endVi...
分类:
其他好文 时间:
2015-06-15 23:35:15
阅读次数:
266
UIAlertView1.Title获取或设置UIAlertView上的标题。2.Message获取或设置UIAlertView上的消息 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"me...
分类:
其他好文 时间:
2015-06-12 17:05:23
阅读次数:
115
github 网址:https://github.com/jivadevoe/UIAlertView-Blocks使用在Pods的Podfile里加入:pod 'UIAlertView-Blocks', '~> 1.0'运行命令:
pod update
代码RIButtonItem *cancelItem = [RIButtonItem itemWithLabel:@"No" action:^{...
分类:
其他好文 时间:
2015-06-10 15:43:09
阅读次数:
140
iOS iOS8新特性--UIAlertController1. iOS7及iOS7之前警告类控件有UIAlertView和UIActionSheet1.1UIAlertView的使用 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@...
分类:
移动开发 时间:
2015-06-09 00:46:22
阅读次数:
171
UIAlertView/UIActionSheetUIAlertView 1 //一个按钮的提醒 2 @IBAction func oneButtonAler() 3 { 4 //创建单一按钮提醒视图 5 let oneButtonA...
分类:
移动开发 时间:
2015-06-07 23:18:59
阅读次数:
416
1. 简介
iPhone 5S 开始支持
iOS 8.0 开放了 Touch ID 的接口
2. 代码准备- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [self inputUserinfo];
}/// 输入用户信息
- (void)inputUserinfo {
UIAlertView *a...
分类:
移动开发 时间:
2015-06-05 10:18:34
阅读次数:
186