应该是notificationcenter多次postNotification导致的.试试map或者throttle map [[[[[NSNotificationCenter defaultCenter] rac_addObserverForName:@"noti" object:nil] map:^id(NSNotification *value) { return value.object; }] distinctUntilChanged] subscribeNext:^(id x) { NSLog(@"%@",x); }]; throttle [[[[NSNotificationCenter defaultCenter] rac_addObserverForName:@"noti" object:nil] throttle:1] subscribeNext:^(id x) { NSLog(@"%@",x); }];
应该是
notificationcenter
多次postNotification
导致的.试试
map
或者throttle
map
throttle