We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 852f172 commit e7ad6f0Copy full SHA for e7ad6f0
Coding_iOS/Views/Cell/CodingTipCell.m
@@ -122,7 +122,8 @@ - (void)setCurTip:(CodingTip *)curTip{
122
//owner姓名
123
[self.ownerNameBtn setUserTitle:userName font:[UIFont systemFontOfSize:17] maxWidth:(kCodingTipCell_WidthContent -80)];
124
//时间
125
- _timeLabel.text = _curTip.target_type;
+// _timeLabel.text = _curTip.target_type;
126
+ _timeLabel.text = [_curTip.created_at stringDisplay_HHmm];
127
128
//content
129
[_contentLabel setLongString:_curTip.content withFitWidth:kCodingTipCell_WidthContent];
0 commit comments