Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这里使用 Github iRate 库中的 iRate 库
如果我想在 5 天后当用户点击“稍后提醒我”或“不,谢谢”时提示费率视图,我应该怎么做。
从您提供的 github 链接上的文档
@property (nonatomic, assign) float remindPeriod; 在用户选择“稍后提醒我”选项(以天为单位)后,应用程序在提醒用户评分之前应该等待多长时间。零值意味着应用程序将提醒用户下次启动。请注意,此值将取代其他标准,因此应用程序不会在提醒期间提示您进行评分,即使在此期间发布了新版本也是如此。这默认为 1 天。
@property (nonatomic, assign) float remindPeriod;
所以只需将其设置为 5。请在以后更仔细地阅读文档。