我有以下代码:
HHReviewsCell *typeCastCell = (HHReviewsCell *)tableViewCell;
HHBusinessRatings *rate = self.dataModel.reviews[indexPath.row];
typeCastCell.lblReview.text = "Review";
[typeCastCell.rating configureWithRating:rate.rating editable:NO delegate:nil];
这会生成一系列带有“Review”的标签。但是,我想用黑线分隔每一个,以便用户知道有多个评论。有人可以告诉我如何做到这一点吗?