How to add star rating to UITableView cell?

后端 未结 4 1530
渐次进展
渐次进展 2021-01-16 03:08

I need to display a bunch of UITableViewCell in my iPhone application. Sample look below. I know how I can enable accessory view and image to UITableView cell

4条回答
  •  鱼传尺愫
    2021-01-16 03:27

    This Matt Gallagher post helped me a ton when dealing with custom TableView cells http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html.

    Summary 1) Do not subclass UITableViewCell 2) In the cellForRowAtIndexPath method, layout your custom subviews on top of the dequeued UITableViewCell.

    To add a star just use a UIButton with the default image of a unhighlighted star and a selected image of a highlighted star.

提交回复
热议问题