开发者

Iphone: Check List

开发者 https://www.devze.com 2023-03-01 08:25 出处:网络
Is there standard way to implement standard Iphone Check List like when you choose ringtone in Settings ? 开发者_StackOverflow社区When you click on a row and checkmark appears ...

Is there standard way to implement standard Iphone Check List like when you choose ringtone in Settings ? 开发者_StackOverflow社区When you click on a row and checkmark appears ...

Or I should draw a checkmark by myself and set it by row index ?


You don't need to actually draw it. You can use:

[self.tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;

0

精彩评论

暂无评论...
验证码 换一张
取 消