Commit 8bd70eb5 authored by yuzheng.tz's avatar yuzheng.tz

修复已有选中照片时第一次去相册页选中个数不显示的问题

parent aaf721b6
...@@ -657,7 +657,12 @@ ...@@ -657,7 +657,12 @@
albumModel.selectedModels = imagePickerVc.selectedModels; albumModel.selectedModels = imagePickerVc.selectedModels;
} }
[imagePickerVc hideProgressHUD]; [imagePickerVc hideProgressHUD];
if (self.isFirstAppear) {
self.isFirstAppear = NO; self.isFirstAppear = NO;
[self configTableView];
}
if (!_tableView) { if (!_tableView) {
_tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain]; _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
_tableView.rowHeight = 70; _tableView.rowHeight = 70;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment