上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页
摘要: 本文内容是对《NoSQL Data Modeling Techniques》一文的简单概述,原文对NoSQL的几种数据模型进行了详细深入的讨论。是了解NoSQL数据模型不过错过的全面资料。 NoSQL的一些非功能性的特性,比如扩展性、性能以及一致性的讨论,目前已经有很多。而对于NoSQL产品内部数据... 阅读全文
posted @ 2012-03-05 19:01 shuaixf 阅读(351) 评论(0) 推荐(1)
摘要: nil: A null pointer to an Objective-C object.( #define nil ((id)0) )Nil: A null pointer to an Objective-C class.NULL: A null pointer to anything else,... 阅读全文
posted @ 2012-03-05 15:00 shuaixf 阅读(1026) 评论(0) 推荐(1)
摘要: NSNumber //NSNumber创建后可以放入数组或字典中 装箱(boxing)基本类型->对象 取消装箱(unboxing)对象->基本类型 NSNumber *n1 = [NSNumber numberWithInt:100]; ... 阅读全文
posted @ 2012-03-04 16:30 shuaixf 阅读(691) 评论(0) 推荐(0)
摘要: //NSDictionary 初始化 NSDictionary *d1 = [NSDictionary dictionaryWithObjectsAndKeys:@"Shanghai", @"Location", @"Programmer", @"Occupatio... 阅读全文
posted @ 2012-03-02 15:02 shuaixf 阅读(662) 评论(0) 推荐(0)
摘要: %@ 对象%d, %i 整数%u 无符整形%f 浮点/双字%x, %X 二进制整数%o 八进制整数%zu size_t%p 指针%e 浮点/双字 (科学计算)%g 浮点/双字%s C 字符串%.*s ... 阅读全文
posted @ 2012-03-01 21:48 shuaixf 阅读(182) 评论(0) 推荐(0)
摘要: //NSArray 初始化 NSArray *arr1 = [NSArray arrayWithObject:@"a" @"b" @"c"]; //NSArray *arr1 = [[NSArray alloc] initWithObjects:@"a... 阅读全文
posted @ 2012-03-01 21:43 shuaixf 阅读(1852) 评论(0) 推荐(0)
摘要: //NSMutableString stringWithCapacity, stringWithString NSMutableString *str1 = [NSMutableString stringWithCapacity:100]; NSMut... 阅读全文
posted @ 2012-03-01 17:26 shuaixf 阅读(444) 评论(0) 推荐(0)
摘要: //NSString stringWithFormat, stringWithString, stringWithUTF8String NSString *s1 = [NSString stringWithFormat:@"苹果fans"]; NSLo... 阅读全文
posted @ 2012-03-01 17:19 shuaixf 阅读(1103) 评论(0) 推荐(1)
摘要: iOS可操作目录有两种:Documents下与Caches下, 如图: 1、创建目录 createDirectoryAtPath:withIntermediateDirectories:attributes:error:NSFileManager * fileMana... 阅读全文
posted @ 2012-02-23 15:25 shuaixf 阅读(1419) 评论(0) 推荐(0)
摘要: 12 April 2011 How to Write an iOS App That Uses a Web Service Tweet If you're new here, you may want to subscribe to my RSS feed or foll... 阅读全文
posted @ 2012-02-21 17:34 shuaixf 阅读(1894) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 40 下一页