2016年8月31日

TouchID

摘要: http://www.cocoachina.com/ios/20160831/17439.html 阅读全文

posted @ 2016-08-31 18:36 松声竹影 阅读(103) 评论(0) 推荐(0) 编辑

2016年3月25日

正则表达式

摘要: http://my.oschina.net/u/2340880/blog/403638 阅读全文

posted @ 2016-03-25 15:42 松声竹影 阅读(101) 评论(0) 推荐(0) 编辑

2016年1月7日

duplicate symbol 错误

摘要: http://blog.163.com/023_dns/blog/static/118727366201391544630380/ 阅读全文

posted @ 2016-01-07 18:04 松声竹影 阅读(111) 评论(0) 推荐(0) 编辑

2015年12月28日

第三方登录

摘要: http://wiki.connect.qq.com/%E7%A7%BB%E5%8A%A8%E5%BA%94%E7%94%A8%E6%8E%A5%E5%85%A5%E6%B5%81%E7%A8%8B 阅读全文

posted @ 2015-12-28 11:59 松声竹影 阅读(80) 评论(0) 推荐(0) 编辑

AFNetWorking

摘要: http://blog.sina.com.cn/s/blog_a5243c7f0101ovq5.html 阅读全文

posted @ 2015-12-28 10:59 松声竹影 阅读(101) 评论(0) 推荐(0) 编辑

2015年4月30日

IOS---通知

摘要: http://www.cnblogs.com/kenshincui/p/4168532.html本地通知UILocalNotification *local=[[UILocalNotification alloc]init]; local.fireDate=[NSDate dateWithTime... 阅读全文

posted @ 2015-04-30 14:28 松声竹影 阅读(116) 评论(0) 推荐(0) 编辑

2015年4月23日

左右点击--日期增减

摘要: -(UIView *)viewGetByDate{ UIView *view=[[UIView alloc]initWithFrame:CGRectMake(20, 20, 180, 50)]; //view.backgroundColor=[UIColor redColor]; UIButt... 阅读全文

posted @ 2015-04-23 20:55 松声竹影 阅读(363) 评论(0) 推荐(0) 编辑

Xcode相关设置

摘要: 更改工程名字:Build Seting ---Product name;ARC关闭:Build Seting ---搜索gar;真机调试设置方式 : 1.设置Bundle id; 2.设置Build Seting ---Code Signing,选择证书; 阅读全文

posted @ 2015-04-23 14:56 松声竹影 阅读(94) 评论(0) 推荐(0) 编辑

IOS---ASI

摘要: 1.把Tests文件夹删除2.导入CFNetwork.framework ,libxml2.dylib ,MobileCoreServices.framework,SystemConfiguration.framework,libz.dylib3.在 工程文件的 build setting 的 he... 阅读全文

posted @ 2015-04-23 13:13 松声竹影 阅读(127) 评论(0) 推荐(0) 编辑

IOS---真机调试

摘要: 一,申请IOS开发者账号 详细地址:https://developer.apple.com/programs/which-program/ 1,个人账号(Individual): 费用99美金一年, ... 阅读全文

posted @ 2015-04-23 10:24 松声竹影 阅读(131) 评论(0) 推荐(0) 编辑

2015年4月22日

IOS---collectionView

摘要: http://blog.csdn.net/Apple_app/article/details/38867123 阅读全文

posted @ 2015-04-22 17:13 松声竹影 阅读(103) 评论(0) 推荐(0) 编辑

2015年4月17日

SVN

摘要: 建立SVN服务器1.首先在任意地方建立一个文件夹 ,如在桌面上建立一个名字为svn的文件夹2.创建svn repository svnadmin create /Users/pengfeishi/Desktop/svn/res3./Users/pengfeishi/Desktop/svn/res/c... 阅读全文

posted @ 2015-04-17 15:52 松声竹影 阅读(116) 评论(0) 推荐(0) 编辑

单例设计模式

摘要: 设计模式:提供一些方法解决一类的问题; 常见的设计模式:代理、通知、block、MVC、单例; block实际上是: 指向结构体的指针 ; 阅读全文

posted @ 2015-04-17 11:36 松声竹影 阅读(79) 评论(0) 推荐(0) 编辑

2015年4月15日

数组

摘要: 一、数组去重- (NSArray *)arrayWithMemberIsOnly:(NSArray *)array{ NSMutableArray *categoryArray = [[NSMutableArray alloc] init]; for (unsigned i = 0; i < [... 阅读全文

posted @ 2015-04-15 14:47 松声竹影 阅读(104) 评论(0) 推荐(0) 编辑

2015年4月9日

多线程---GCD

摘要: 一,什么是GCD? GCD (Grand Center Dispatch),宏大(牛逼)的中央调度。Apple开发的一个多核编程的解决方法。在iOS所有实现多线程的方案中(NSThread,NSOperation&NSOperationQueue、GCD ),GCD应该是最有魅力的,因为GCD本身是 阅读全文

posted @ 2015-04-09 17:32 松声竹影 阅读(237) 评论(0) 推荐(0) 编辑

2015年1月22日

UIDatePicker的使用

摘要: UIDatePicker控件特别类似与UIPickerView控件。主要用来对日期的选择。1. UIDatePicker的实例化和基本设置self.myDatePicker = [[UIDatePicker alloc] init]; [self.myDatePicker setCenter:... 阅读全文

posted @ 2015-01-22 21:42 松声竹影 阅读(252) 评论(0) 推荐(0) 编辑

NSTimer的使用

摘要: NSTimer其实是将一个监听加入到系统的RunLoop中去,当系统runloop到如何timer条件的循环时,会调用timer一次,当timer执行完,也就是回调函数执行之后,timer会再一次的将自己加入到runloop中去继续监听。定义一个timer:NSTimer *timer=[NSTim... 阅读全文

posted @ 2015-01-22 17:34 松声竹影 阅读(232) 评论(0) 推荐(0) 编辑

2015年1月21日

[转] UIApplication、AppDelegate、委托

摘要: 转自http://blog.csdn.net/xingxing513234072/article/details/16342889UIApplication、AppDelegate、委托等的关系?什么是委托?为什么要有委托?委托在Iphone中的实现机制是怎样的?一般来说,我们创建了一个Iphone... 阅读全文

posted @ 2015-01-21 11:32 松声竹影 阅读(128) 评论(0) 推荐(0) 编辑

2015年1月20日

【代理和协议】自我总结

摘要: 用了这么久的代理协议了,迷迷糊糊的!简单的总结下!代理很像C#中的委托,可以实现页面间传值和传递方法!代理和协议通常结合使用!声明一个代理和协议#import //声明一个协议@protocol ChangeTextViewDelegate //协议内容@required -(void)textEn... 阅读全文

posted @ 2015-01-20 21:48 松声竹影 阅读(125) 评论(0) 推荐(0) 编辑

[alloc]init和new的差别

摘要: new和alloc/init在功能上几乎是一致的,分配内存并完成初始化。差别在于,采用new的方式只能采用默认的init方法完成初始化,采用alloc的方式可以用其他定制的初始化方法。 阅读全文

posted @ 2015-01-20 16:52 松声竹影 阅读(140) 评论(0) 推荐(0) 编辑

导航