仅在前 3 个应用程序使用时突出显示表格行
当我发布新更新或添加新行时,我想突出显示 -color-我的应用程序的新行。另外,我想仅当用户使用我的应用程序至少 3 次时才突出显示它们。我该怎么做? 提前致谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 NSUserDefaults 中为每个新表行存储一个值,记住它们被查看的次数。为每一行增加 applicationHasFinishedLaunching 中的数字。如果该行的查看次数超过 3,请将其删除。渲染时查找 NSUserDefaults 中的行 ID 并检查它是否应该突出显示。
添加新行..
渲染..
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..