摘要: 1 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil]; 2 3 - (void)dealloc 4 { 5 [[NSN... 阅读全文
posted @ 2016-07-21 18:41 超神船长 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1 1.tableView的刷新 2 1> 数据刷新的总体步骤 3 * 修改模型数据 4 * 刷新表格(刷新界面) 5 6 2> 刷新表格(刷新界面)的方法 7 * 全局刷新(每一行都会重新刷新) 8 - (void)reloadData; 9 10 * 局部刷新(使用前提: 刷新前后, 模型数据的个数不变) 11 - (void)reloadRows:(NSArray *... 阅读全文
posted @ 2016-07-21 14:56 超神船长 阅读(1610) 评论(0) 推荐(0) 编辑
摘要: 1 ## 获得自定义的所有相簿 2 3 // 获得所有的自定义相簿 4 PHFetchResult *assetCollections = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAlbumRegular... 阅读全文
posted @ 2016-07-21 14:45 超神船长 阅读(235) 评论(0) 推荐(0) 编辑