|
@@ -32,7 +32,7 @@
|
|
|
[self.container addSubview:self.musicContentView];
|
|
|
|
|
|
[self.musicContentView mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
|
- make.left.mas_equalTo(self.container.mas_right);
|
|
|
+ make.left.mas_equalTo(self.container.mas_left);
|
|
|
make.top.mas_equalTo(self.container.mas_top);
|
|
|
make.width.mas_equalTo(260);
|
|
|
make.bottom.mas_equalTo(self.container.mas_bottom).offset(-10);
|
|
@@ -52,7 +52,7 @@
|
|
|
}
|
|
|
else {
|
|
|
[self.musicContentView mas_remakeConstraints:^(MASConstraintMaker *make) {
|
|
|
- make.right.mas_equalTo(self.container.mas_left);
|
|
|
+ make.right.mas_equalTo(self.container.mas_right);
|
|
|
make.top.mas_equalTo(self.container.mas_top);
|
|
|
make.width.mas_equalTo(260);
|
|
|
make.bottom.mas_equalTo(self.container.mas_bottom).offset(-10);
|