又是我。我希望使用 DYRateView(在此处找到:https ://github.com/dyang/DYRateView )为我的 TableViewCells 添加星级。我目前在 cellForRowAtIndexPath 中使用此代码:
DYRateView *rateView = [[DYRateView alloc] initWithFrame:CGRectMake(78, 49, 100, 14)];
rateView.rate = 4;
rateView.alignment = RateViewAlignmentRight;
[cell.contentView addSubview:rateView];
现在我已经完成了所有基本检查,例如导入头文件并将星图添加到库中,但它只是拒绝工作!如果您能提供任何建议,我将不胜感激。
问候,
迈克