|
@@ -68,9 +68,9 @@
|
|
|
|
|
|
- (void)setupSubviews {
|
|
|
|
|
|
- _progressView = [[UIImageView alloc] initWithImage:[AliyunImage imageNamed:@"progress"]];
|
|
|
- _progressView.bounds = CGRectMake(0, 0, ScreenWidth / 8.0, 72);
|
|
|
- _progressView.center = CGPointMake(0, CGRectGetMidY(self.bounds) + 6);
|
|
|
+ _progressView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"video_edit_progressbar"]];
|
|
|
+ _progressView.bounds = CGRectMake(0, 0, 4, 80);
|
|
|
+ _progressView.center = CGPointMake(0, CGRectGetMidY(self.bounds) + 19);
|
|
|
[self addSubview:_progressView];
|
|
|
|
|
|
_durationLabel = [[UILabel alloc] initWithFrame:CGRectMake(14, 0, ScreenWidth - 200, 18)];
|
|
@@ -81,10 +81,10 @@
|
|
|
|
|
|
_imageViewWith = ScreenWidth / 8.0 * 0.35;
|
|
|
_imageViewLeft = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"video_edit_left"]];
|
|
|
- _imageViewLeft.frame = CGRectMake(0, 38, _imageViewWith, 72);
|
|
|
+ _imageViewLeft.frame = CGRectMake(0, 38, 15, 72);
|
|
|
_imageViewLeft.userInteractionEnabled = YES;
|
|
|
_imageViewRight = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"video_edit_right"]];
|
|
|
- _imageViewRight.frame = CGRectMake(ScreenWidth - _imageViewWith, 38, _imageViewWith, 72);
|
|
|
+ _imageViewRight.frame = CGRectMake(ScreenWidth-28-15, 38, 15, 72);
|
|
|
_imageViewRight.userInteractionEnabled = YES;
|
|
|
|
|
|
|