Created
June 30, 2020 19:41
-
-
Save chelseatroy/359c74d362e866149d60556f181b80eb to your computer and use it in GitHub Desktop.
Example of Setting Accessory Type on Cell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
//to put a checkmark on the trailing side of the view | |
self.accessoryType = .checkmark | |
//to remove an accessory (such as a checkmark) from the trailing side of the view | |
self.accessoryType = .none | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment