【发布时间】:2014-07-15 08:13:59
【问题描述】:
是否可以使用 ReactiveCocoa 以某种方式将更新下载时间限制为 0.3 秒? 示例:
if (the_previous_update == indefinitely)
{
update;
}
if else (current_time - the_previous_update>=0.3)
{
the_previous_update = current_time;
update;
}
else{
do nothing;
}
【问题讨论】:
标签: xcode reactive-cocoa