由   YIem   撰写于    浏览:5284  评论:0
/*定义一个block,返回值为BOOL,有两个NSString参数。实现:判断字符串是否相等。*/ if 1 BOOL (^block)(NSString *a, NSString *b) = ^BOOL(NSString *a, NSString *b) { // return [a compare:b];

由   YIem   撰写于    浏览:3010  评论:0
.main.m文件/* 定义Student类 1、属性有age,name,gender; 2、age使⽤用assign,name使⽤用retain,gender使⽤用copy; 3、重写age、name、gender的setter和getter⽅方法。 */if 0 Student *stu = [[Student al

由   YIem   撰写于    浏览:3829  评论:0
// block // 定义一个block 无返回值 无参数 void (^block1)(void) = ^(void) { NSLog(@"甜甜"); }; // 调用一个block block1(); NSInteger (^block2)(NSI

由   YIem   撰写于    浏览:2701  评论:0
///************* 不同类型转换 ****** // 整型转NSString int a = 3; NSString *str = [NSString stringWithFormat:@"%d", a]; NSLog(@"%@", str); // NSStrin

由   YIem   撰写于    浏览:2915  评论:0
// 重写系统调用的释放方法// 以后在mrc下 如果定义了retian/copy的属性// 都需要重写dealloc方法 并将其release在此处(void)dealloc{// getter的autorelease回引起延时减 1 // [self.name release]; [_name release]; [super dealloc];}

由   YIem   撰写于    浏览:2598  评论:0
// alloc retain copy 引用计数加 1 // release autorelease 引用计数减 1 // 当对象被添进collection类型中时 对象引用计数加 1 // 当对象被移除collection类型中时 对象引用计数减 1 // 当collection类型的数据被销毁时

由   YIem   撰写于    浏览:3562  评论:0
/********* 方法2 简单类型对象的排序 ************/if 0// 创建排序对象 // 参数1 - 为简单类型对象可填写nil/@"self" // 为复杂类型对象可填写要进行排序的关键字, 如 按照Person的name成员排序 可填写@"name"; //参数2 - 升序/

由   YIem   撰写于    浏览:2955  评论:0
.main.m 代码 /********** 自定义类型对象的排序 *****************/ Person *per1 = [[Person alloc] initWithName:@"Long" age:22]; Person *per2 = [[Person alloc] initWithName:@"

由   YIem   撰写于    浏览:2813  评论:0
/*************** 简单对象的排序 *****************/ // 排序 可变数组NSMutableArray *arr = [NSMutableArray arrayWithObjects:@"8", @"2", @"3", @"5", nil];

由   YIem   撰写于    浏览:3350  评论:0
// 集合 - 集合的元素具有唯一性 // 常用于判断交/并集等操作 /// 不可变集合// 创建集合 // 如果有重复元素 只保留一个 eg;@"2", @"2" NSSet *set = [NSSet setWithObjects:@"1",@"2" , @"

由   YIem   撰写于    浏览:6532  评论:0
OC- 字典套数组 -- 省市区// 获取文件 NSString *str = [NSString stringWithContentsOfFile:@"area.txt" encoding:NSUTF8StringEncoding error:nil]; // 按\n截取 NSArray *line = [str componentsS

由   YIem   撰写于    浏览:3539  评论:0
省市区OC-字典-省市区-省数组套省字典套市数组套市字典套区数组数据文件:省市区TXT(数据)文件 NSString *str = [NSString stringWithContentsOfFile:@"area.txt" encoding:NSUTF8StringEncoding error:nil]; NSLog(@"%@

由   YIem   撰写于    浏览:3052  评论:0
分别有三个文件.mian.mint main(int argc, const char * argv[]) { // 创建学生 Student *stu1 = [[Student alloc]initWithName:@"卞一" sex:@"男" age:@"20"]; Student *stu2

由   YIem   撰写于    浏览:2765  评论:0
OC-可变字典(NSMutableDictionary)操作// 可变字典创建 NSMutableDictionary *mdic = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @"sex

由   YIem   撰写于    浏览:2799  评论:0
OC-不可变字典(NSDictionary) 操作// 不可变字典 创建 NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @"sex", @"啪啪啪

由   YIem   撰写于    浏览:2465  评论:0
创建可变数和不可变数组的中文方法// 中文版 NSArray *阿尔 = @[@"AAA"]; NSLog(@"%@", 阿尔); NSLog(@"%ld", 阿尔.count); NSArray *卞一 = @[@"YIem", @"YI", @"

由   YIem   撰写于    浏览:3063  评论:0
可变数组和不可变数组的快速创建-修改-赋值-替换-判断等等NSArray *arr = @[@"aa", @"bb", @"cc", @"dd", @"ff", @"ee", @"gg"]; // 获取数组的元素个数

由   YIem   撰写于    浏览:3016  评论:0
可变数组的各种操作// 可变数组 NSMutableArray *mArr = [NSMutableArray arrayWithObjects:@"aaa", @"bbb", @"ccc", @"ddd", @"eee", nil]; // 添加一个元素 [

由   YIem   撰写于    浏览:2509  评论:0
创建不可变数组,对其的各种操作 // 创建数组 NSArray *arr = @[@"aa", @"bb", @"dd", @"12", @"ff"]; // 获取数组对象个数 NSLog(@"%ld", arr.count); // 获

由   YIem   撰写于    浏览:3492  评论:0
// 1. 创建一个不可变字符串 str // 2. 输出 str 的长度 // 3. 将 str 中的所有 'i' 都替换为 'x' // 4. 比较 str 和 "sample" 字符串的大小, 输出较小的一个. // 5. 将 str 转为可变字符串 mutableStr // 6. 判断 mutableStr 长度, 如果大于10

由   YIem   撰写于    浏览:3364  评论:0
// 获取数组的元素个数( 多用于遍历) NSLog(@"array元素个数: %ld", array.count);/// 获取某一个元素NSString *name = [array objectAtIndex:0]; NSLog(@"array获取某一个元素%@", name); // C 语言形式的取值 NSL

由   YIem   撰写于    浏览:2685  评论:0
/* * 向某个下标插入一个元素(insert) * 删除(delete) * 交换(exchange) */ // 向某个下标插入一个元素 [mutableArr insertObject:@"22" atIndex:2]; NSLog(@"%@", mutableArr); // 删除某个元素 [mutabl

由   YIem   撰写于    浏览:3075  评论:0
iOS 判断Objective-C 字符串是否已i开头 you结尾 NSString *str = [NSString stringWithFormat:@"i Love you"]; [str hasPrefix:@"i"] && [str hasSuffix:@"you"

由   YIem   撰写于    浏览:3668  评论:0
迟来的新年祝福,2016年我要好好的

由   YIem   撰写于    浏览:2708  评论:0
2015-12-28-- 今天我降班了,原因是字典和数组传值迷糊了然后来了新的班级,重新开始学习OC,可是,来到这个班级我还是有一种智商被压制的感觉,上课进程一塌糊涂,然后,我就开始蛋疼了,弄得好尴尬,而且重新读档一个月,又开始学习类和对象,啊....有一种要疯了的感觉,感觉和他们不在一个频道,不知道来年的四月份能不能结束.太慢了!之前的班级感觉智商是被他们