最近在開發(fā)中遇到界面中的跳轉(zhuǎn), 通常的跳轉(zhuǎn) 不必多說, 這里說的是我 使用通知,跳轉(zhuǎn)實現(xiàn) tabbar 的跳轉(zhuǎn) 之后 在做對應(yīng)的操作, 可能這個只適用于 我這種情況
添加通知
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[self.superVC selectTabbarIndex:2];
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
[self.superVC.navigationController popViewControllerAnimated:NO];
[YFNotificationCenter postNotificationName:@"JumpSpecialLineKeys" object:nil];
}];
}];
接手通知
@weakify(self)
[[YFNotificationCenter rac_addObserverForName:@"JumpSpecialLineKeys" object:nil] subscribeNext:^(id x) {
@strongify(self)
[self.titleScroll setSelectedIndex:1];
[self titleClick:1];
}];