Commit 6f747fd5 authored by 陈圣治's avatar 陈圣治

选择图片网格界面完成按钮左侧的数字显示区域增加点击功能

parent 3a521698
...@@ -309,6 +309,10 @@ static CGFloat itemMargin = 5; ...@@ -309,6 +309,10 @@ static CGFloat itemMargin = 5;
_numberLabel.text = [NSString stringWithFormat:@"%zd",tzImagePickerVc.selectedModels.count]; _numberLabel.text = [NSString stringWithFormat:@"%zd",tzImagePickerVc.selectedModels.count];
_numberLabel.hidden = tzImagePickerVc.selectedModels.count <= 0; _numberLabel.hidden = tzImagePickerVc.selectedModels.count <= 0;
_numberLabel.backgroundColor = [UIColor clearColor]; _numberLabel.backgroundColor = [UIColor clearColor];
_numberLabel.userInteractionEnabled = YES;
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(doneButtonClick)];
[_numberLabel addGestureRecognizer:tapGesture];
_divideLine = [[UIView alloc] init]; _divideLine = [[UIView alloc] init];
CGFloat rgb2 = 222 / 255.0; 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