摘要: bar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColorwhiteColor]}; 阅读全文
posted @ 2013-12-25 09:41 vicvic 阅读(94) 评论(0) 推荐(0)
摘要: strong:这要求运行时自动地保留对这个对象的引用。换而言之,ARC(Automatic Reference Counting)在运行时会一直把这个对象保留在内存里,直到它不再被任何其他对象引用。之后,其所占的内存会被自动释放。assign:表示这个属性的值会被直接设定,不需要任何内存管理。一般只用在非对象类的数据,比如 float。 阅读全文
posted @ 2013-12-15 11:37 vicvic 阅读(230) 评论(0) 推荐(0)
摘要: 100 => 'Continue', 101 => 'Switching Protocols', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative Information', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Conte 阅读全文
posted @ 2013-12-04 10:30 vicvic 阅读(168) 评论(0) 推荐(0)