09 2013 档案

摘要:1 #import 2 #import "StringUtils.h" 3 4 @interface ImageManager : NSObject 5 { 6 NSMutableDictionary *_imageDict; 7 NSMutableArray *_imageArr; 8 } 9 10 @property(nonatomic, strong) NSString *httpUrl;11 @property(nonatomic, strong) NSMutableDictionary *imageDict;12 13 @property(nonatomic, . 阅读全文
posted @ 2013-09-19 10:24 骨头 阅读(5538) 评论(0) 推荐(0)
摘要:warrior@pc:~$ sudo apt-get install postgresql-xx-xx #可以使用Tab键进行代码补全warrior@pc:~$sudo su postgres #切换到postgrespostgres@pc:/home/warrior$psql postgres # 登录 postgres 数据库postgres@pc:/home/warrior$ psql postgrespsql (9.1.9)Type "help" for help.postgres=# ALTER USER postgres WITH ... 阅读全文
posted @ 2013-09-04 21:05 骨头 阅读(230) 评论(0) 推荐(0)
摘要:、1 //图片列表2 NSMutableArray *pictureList;3 //分组列表4 NSMutableArray *indexArr; 1 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 2 { 3 static NSString *picWallItemView = @"picWallItemView"; 4 UITableViewCell *cell = [self.tableView dequeue 阅读全文
posted @ 2013-09-02 10:40 骨头 阅读(2406) 评论(0) 推荐(0)