01 2016 档案
摘要:Bitcode概述 Bitcode is an intermediate representation of a compiled program. Apps you upload to iTunes Connect that contain bitcode will be compiled ...
阅读全文
摘要:IOS 中的 AppDelegate.m/h 文件是很重要的呢,因为它是对 Application 的整个生命周期进行管理的。先明白,每个iPhone应用程序都有一个UIApplication,UIApplication是iPhone应用程序的开始并且负责初始化并显 示 UIWindow,并负责加载...
阅读全文
摘要:第一次接触IOS的本地通知的使用,看到别人写的一个比较详细的记录,自己整理过来,方便以后再次使用和拓展:1.创建一个本地通知,添加到系统: 1 // 初始化本地通知对象 2 UILocalNotification *notification = [[UILocalNotification alloc...
阅读全文
摘要:类Class中的属性property:在ios第一版中,我们为输出口同时声明了属性和底层实例变量,那时,属性是oc语言的一个新的机制,并且要求你必须声明与之对应的实例变量,例如:@interface MyViewController :UIViewController{ UIButton *m...
阅读全文