I want to highlight -color-my app’s new rows when i release a new update or when i add a new row. Also, i want to keep them highlighted only when the user uses my app at least 3 times. How can i do it?
Thanks in advance
I want to highlight -color-my app’s new rows when i release a new update
Share
Store in the NSUserDefaults a value for each new table row remembering how many times they’ve been viewed. Increment a number in the applicationHasFinishedLaunching for each of the rows. If the row’s view count is more than 3, remove it. When rendering look up the row id in the NSUserDefaults and check to see if it should be highlighted.
Adding new rows..
Rendering..