Unverified Commit 03ecfc8b authored by 谭真's avatar 谭真 Committed by GitHub

Merge pull request #1469 from AppLog/master

增加图片选择界面完成按钮左侧数字显示区域点击事件
parents 3a521698 6f747fd5
......@@ -309,6 +309,10 @@ static CGFloat itemMargin = 5;
_numberLabel.text = [NSString stringWithFormat:@"%zd",tzImagePickerVc.selectedModels.count];
_numberLabel.hidden = tzImagePickerVc.selectedModels.count <= 0;
_numberLabel.backgroundColor = [UIColor clearColor];
_numberLabel.userInteractionEnabled = YES;
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(doneButtonClick)];
[_numberLabel addGestureRecognizer:tapGesture];
_divideLine = [[UIView alloc] init];
CGFloat rgb2 = 222 / 255.0;
......
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