typedef enum : NSInteger {
UITableViewCellAccessoryNone,
UITableViewCellAccessoryDisclosureIndicator,
UITableViewCellAccessoryDetailDisclosureButton,
UITableViewCellAccessoryCheckmark,
UITableViewCellAccessoryDetailButton
} UITableViewCellAccessoryType;
我看不到开关样式。在仍然正确更新单元格的同时显示开关的最佳方法是什么?
最佳答案
您无需为此使用accessoryType
或editingAccessoryType
。使用accessoryView
或editingAccessoryView
。
UISwitch *switch = ... // create and setup the switch
cell.editingAccessoryView = switch;
关于ios - 将editingAccessoryType设置为UISwitch,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24926037/