Closed smoothdvd closed 5 years ago
Does [threadDao messageOfThread:thread]
return a signal?
@erikprice Yes. these code works
flattenMap:^__kindof RACSignal * _Nullable(RACTuple *tuple) {
NSArray *threads = tuple.first;
return [threadDao messageOfThread:[threads objectAtIndex:0]];
//return [RACSignal concat:[threads.rac_sequence map:^id(Thread *thread) {
// return [threadDao messageOfThread:thread];
//}]];
}]
Strange, those code will run in testflight and production mode without error report.
Remove duplicated libraries from OTHER_LDFLAGS in Pods-app.debug.xcconfig solved this issue.