Skip to content

Commit e5d75a4

Browse files
committed
任务看板 UI 调整
1 parent b92c068 commit e5d75a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Coding_iOS/Views/Cell/EATaskBoardListTaskCell.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
5555
if (!_contentLabel) {
5656
_contentLabel = [UILabel new];
5757
_contentLabel.textColor = kColorDark3;
58-
_contentLabel.font = [UIFont systemFontOfSize:14];
58+
_contentLabel.font = [UIFont systemFontOfSize:15];
5959
[_innerContentView addSubview:_contentLabel];
6060
}
6161
if (!_timeLabel) {
@@ -83,7 +83,7 @@ - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reus
8383
make.size.mas_equalTo(CGSizeMake(17, 17));
8484
}];
8585
[_contentLabel mas_makeConstraints:^(MASConstraintMaker *make) {
86-
make.top.equalTo(_innerContentView).offset(10);
86+
make.top.equalTo(_innerContentView).offset(15);
8787
make.left.equalTo(self.taskPriorityView.mas_right).offset(10);
8888
make.right.equalTo(_innerContentView).offset(-10);
8989
make.height.mas_equalTo(20);
@@ -180,7 +180,7 @@ - (void)checkViewClicked{
180180
}
181181

182182
+ (CGFloat)cellHeightWithObj:(Task *)obj{
183-
CGFloat cellHeight = 50;
183+
CGFloat cellHeight = 60;
184184
if (obj.deadline_date) {
185185
cellHeight += 22;
186186
}

0 commit comments

Comments
 (0)