Put checkmark in the left side of UITableViewCell

前端 未结 6 407
感情败类
感情败类 2020-12-23 00:14

I want to make something similar to the WiFi settings page: when you tap the table cell, put a checkbox in the left side of the cell, and have a disclosure button accessory

6条回答
  •  悲哀的现实
    2020-12-23 00:39

    Of course you can do that :) For example use UITableViewCellStyle

    UITableViewCellStyleDefault,
    // Simple cell with text label and optional image view
    //(behavior of UITableViewCell in iPhoneOS 2.x)
    

    ...and put a custom "checkmark" image in that "optional image view".

提交回复
热议问题