直接上代码 UIView *myView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; myView.backgroundColor = [UIColor redColor]; [self.view a...
分类:
移动开发 时间:
2015-02-22 10:58:28
阅读次数:
139
iOS8新特性主要体现在4方面1.UIAlertController 对alert&actionSheet的封装UIAlertController.h提示框按钮的选择typedef NS_ENUM(NSInteger, UIAlertActionStyle) { UIAlertActionStyl....
分类:
移动开发 时间:
2015-02-16 15:30:54
阅读次数:
143
1. UIPresentationController的作用 1>管理所有Modal出来的控制器 2>管理通过这个方法 - (void) presentViewController:(UIViewController *) animated:(BOOL) completion:^(void)co.....
分类:
移动开发 时间:
2015-02-08 00:21:43
阅读次数:
211
1.回顾UIPopoverController的使用,下面这份代码只能在ipad下运行 // 初始化控制器,SecondViewController类继承自UIViewController SecondViewController *vc = [[SecondViewController all.....
分类:
移动开发 时间:
2015-02-05 20:18:15
阅读次数:
3898
1. iOS7及iOS7之前警告类控件有UIAlertView和UIActionSheet1.1UIAlertView的使用 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"这是一个UIAlertView...
分类:
移动开发 时间:
2015-02-05 13:22:44
阅读次数:
265
1.UISearchBar(效果如下:)
①创建UISearchBar对象
//初始化,定义frame
UISearchBar *bar = [[UISearchBar alloc] initWithFrame:CGRectMake
(0, 50, self.view.fra...
分类:
移动开发 时间:
2015-02-01 16:10:59
阅读次数:
300
ios8推出也有一段时间了,由于时间比较紧,所以没去学习ios8的新特性, 随着iphone6,6+的推出,ios屏幕适配是一个大问题,如何成功适配各种尺寸以及ipad呢? 苹果公司为了解决这个问题给出了新技术sizeclass 下面...
分类:
移动开发 时间:
2014-12-08 18:00:51
阅读次数:
343
iOS8把很多相识的控件结合在一起。
比如这节要讲的:UIAlertController
UIAlertController 结合了UIAlert/UIActionSheet的所有功能
// 创建代码
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"啊啊啊啊啊啊"...
分类:
移动开发 时间:
2014-12-07 17:49:28
阅读次数:
203
1. App Extension Programming Guide
2.LocalAuthentication.framework - Touch ID Authentication
3.Local Authentication Framework Reference.
4.Photos.framework/PhotosUI.framework
5.AV Foun...
分类:
移动开发 时间:
2014-11-17 10:49:14
阅读次数:
189
iOS8新特性之交互式通知
iOS8以前的远程通知想必大家都非常熟悉了,这里不做过多介绍...
分类:
移动开发 时间:
2014-10-15 21:56:51
阅读次数:
230