|
|
@@ -55,7 +55,7 @@
|
|
|
[_whiteBgView mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
|
make.left.mas_equalTo(20);
|
|
|
make.right.mas_equalTo(-20);
|
|
|
- make.height.mas_equalTo(260);
|
|
|
+ make.height.mas_equalTo(300);
|
|
|
make.centerY.mas_equalTo(self.center).offset(-20);
|
|
|
}];
|
|
|
|
|
|
@@ -180,6 +180,13 @@
|
|
|
}
|
|
|
|
|
|
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
|
|
|
+
|
|
|
+ NSInteger row = indexPath.row;
|
|
|
+
|
|
|
+ if(row == 0){
|
|
|
+ return 90;
|
|
|
+ }
|
|
|
+
|
|
|
return 40;
|
|
|
}
|
|
|
|