2013年12月1日
摘要: 步骤:1.打开Xcode,单机CreatanewXcodeproject2.左边选择ios下Application,右边选择singleviewApplication3.填写项目名称单机Next4.ViewController.h中定义成员和方法//// ViewController.h// TestCalculator4//// Created by heyonggang on 13-11-28.// Copyright (c) 2013年 MiracleHe. All rights reserved.//#import @interface ViewController : UIV... 阅读全文
posted @ 2013-12-01 18:04 猿人谷 阅读(26975) 评论(0) 推荐(4) 编辑
摘要: 来源:http://www.cnblogs.com/xunziji/p/3257447.html#commentform消息机制 NSNotificationCenter 一直都在频繁使用,但是却对其原理不是十分了解。今天就花些时间,把消息机制原理重头到尾好好过一遍。iOS 提供了一种 "同步的" 消息通知机制,观察者只要向消息中心注册, 即可接受其他对象发送来的消息,消息发送者和消息接受者两者可以互相一无所知,完全解耦。这种消息通知机制可以应用于任意时间和任何对象,观察者可以有多个,所以消息具有广播的性质,只是需要注意的是,观察者向消息中心注册以后,在不需要接受消息时需要 阅读全文
posted @ 2013-12-01 15:38 猿人谷 阅读(787) 评论(0) 推荐(0) 编辑
摘要: 创建一个字符串对象:NSstring * str1 = @"hello";NSString * str = [[NSString alloc]initWithString:@"hello world!"];NSString * str_1 = [[NSString alloc]initWithUTF8String:"hello world"];//把C的字符串转化为OC的字符串int a = 123;NSString * str_3 = [[NSString alloc]initWithFormat:@"a = %d %s% 阅读全文
posted @ 2013-12-01 14:54 猿人谷 阅读(24867) 评论(7) 推荐(6) 编辑
摘要: 来源:http://my.oschina.net/outatu/blog/1255891.文件的浅度遍历与深度遍历01//NSFileManager * fm = [[NSFileManager alloc]init];//创建文件管理器02//第一步创建一个文件管理器03NSError * error= nil;04//显示路径下的内容,作用类似于ls -a指令05//返回值是把目录下的内容放到NSArray中06//浅度遍历07NSFileManager * fm = [NSFileManager defaultManager];08NSArray * array = [fm conten 阅读全文
posted @ 2013-12-01 14:49 猿人谷 阅读(541) 评论(0) 推荐(0) 编辑