以下代码在1秒后每秒运行一次.
但我希望它能立即起作用,每一秒钟.
什么是最好的方式?
@weakify(self);[[[RACSignal interval:1.0] takeuntilBlock:^BOol(ID x) { return [AClass count] == 0;}] subscribeNext:^(ID x) { dispatch_async(dispatch_get_main_queue(),^{ @strongify(self); NSUInteger count = [AClass count]; self.Title = [Nsstring stringWithFormat:@"%u",count]; });} completed:^{ dispatch_async(dispatch_get_main_queue(),^{ @strongify(self); self.Title = @""; });}];解决方法 我相信你在寻找
-startWith:
. [[[RACSignal interval:1] startWith:NSDate.date] takeuntilBlock:^(ID _) { // ...总结
以上是内存溢出为你收集整理的ios – RACSignal间隔不能立即生效全部内容,希望文章能够帮你解决ios – RACSignal间隔不能立即生效所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)