注册方式:
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) {
[[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings
...
分类:
移动开发 时间:
2014-10-10 15:13:54
阅读次数:
173
在iOS8中,新增了Size Classes特性,它是对当前所有iOS设备尺寸的一个抽象,也是该抽象了,想想现在多少种iOS尺寸的设备吧:iPhone4-5-6-6plus、iPad、iPad mini、iWatch,如何还是按照以前那针对种特定设备来编写不同的布局的话,一定是很糟糕的一件事情。现在...
分类:
移动开发 时间:
2014-10-10 14:37:14
阅读次数:
276
花了两天折腾这个东西,又是升级iOS8,又是安装Yosemite,终于折腾成功了。 安装Yosemite的时候新划分了一个分区,把它安装到新分区,不影响现在的系统,启动时在系统偏好设置->启动磁盘中选择启动到哪个系统,很...
分类:
移动开发 时间:
2014-10-10 14:26:34
阅读次数:
252
1、前言
iOS8新增了UIAlertController来代替UIAlertView、UIActionSheet的使用。本文在不使用UIAlertController的情况下,用最简单的方法让UIAlertView、UIActionSheet兼容iOS8.
2、UIAlertView
iOS8下,如果UIAlertView初始化的时候title为nil的话,iOS8下面弹框中m...
分类:
移动开发 时间:
2014-10-10 13:58:14
阅读次数:
433
fundamentaltypes:IntDoubleFloatBoolStringcollectiontypes:ArrayDictionarydeclareconstantswith"let"declarevariableswith"var"withannotation(rarelyusedeg:leta:String="good";
varmsg:String="hello";
vara,b,c:Double;toshowaconstantorvariablewithprintln(followedbya..
分类:
移动开发 时间:
2014-10-10 01:51:14
阅读次数:
224
当今,手机碎片化问题越来越严重,多款手机操作系统的兼容以及上千款手机屏幕的适配成为APP开发最头疼的问题。iPhone6的发布已经不是新闻,在全民对苹果新品无限期待的同时,又有谁知道APP的痛点呢!就连“微博”这样的大牌APP,在iOS8上都是2步一崩溃,这让草根开发者情何以堪呢? 海外抢购iP.....
分类:
移动开发 时间:
2014-10-09 20:37:17
阅读次数:
328
在ios7之前,我们进入程序提示用户开启定位是这样做的,如下:CLLocationManager*locationManager=[[CLLocationManageralloc]init];//创建位置管理器//locationManager.delegate=_instance;locationManager.desiredAccuracy=kCLLocationAccuracyBest;locationManager.distanceF..
分类:
移动开发 时间:
2014-10-09 19:30:18
阅读次数:
203
原文地址:http://blog.callmewhy.com/2014/10/08/uialertcontroller-swift-closures-enum/在 iOS8 的 SDK 中, UIKit 框架里两个常用的 API 有了比较大的改动。UIActionSheet 和 UIAlertView 都被 UIAlertController 替换了。在 iOS8 里,如果你想要弹出消息,你应该使...
分类:
编程语言 时间:
2014-10-09 16:55:48
阅读次数:
332
随着iOS8.0和OS X 10.0的发布,大量的毛玻璃效果随处可见.
以前我们实现毛玻璃效果,更多是通过CGImage来实现.现在,XCode6中自带了实现这一效果的API.API如下:
typedef NS_ENUM(NSInteger, UIBlurEffectStyle) {
UIBlurEffectStyleExtraLight,
UIBlurEffectSty...
分类:
移动开发 时间:
2014-10-09 15:26:58
阅读次数:
192