摘要: 通过 __unsafe_unretained标示符标示指针类型的值,否则xcode会报以下错误(前提,你使用的是ARC模式): ARC forbids Objective-C objects in struct 例如: 阅读全文
posted @ 2016-05-23 19:06 zbblogs 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 1 NSMutableArray *arr = [@[@"0",@"3",@"2",@"6",@"5",@"4",@"7",@"1"] mutableCopy]; 2 3 for (int i=0; i<[arr count]-1; i++) { 4 for (int j=0; j<[arr cou 阅读全文
posted @ 2016-05-23 11:51 zbblogs 阅读(347) 评论(0) 推荐(0) 编辑