仅在前 3 个应用程序使用时突出显示表格行

发布于 2024-12-07 07:14:50 字数 88 浏览 0 评论 0原文

当我发布新更新或添加新行时,我想突出显示 -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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的憧憬 2024-12-14 07:14:50

在 NSUserDefaults 中为每个新表行存储一个值,记住它们被查看的次数。为每一行增加 applicationHasFinishedLaunching 中的数字。如果该行的查看次数超过 3,请将其删除。渲染时查找 NSUserDefaults 中的行 ID 并检查它是否应该突出显示。

添加新行..

 [[NSUserDefaults standardUserDefaults] setInteger:0 forKey:myRowId];

渲染..

 if ([(NSInteger*)[[NSUserDefaults standardUserDefaults] integerForKey:myRowId] intValue] < 3) { 
  // render highlighted...
 } else {
  // render normal
 }

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..

 [[NSUserDefaults standardUserDefaults] setInteger:0 forKey:myRowId];

Rendering..

 if ([(NSInteger*)[[NSUserDefaults standardUserDefaults] integerForKey:myRowId] intValue] < 3) { 
  // render highlighted...
 } else {
  // render normal
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文