产生事件
[[NSNotificationCenter defaultCenter] postNotificationName:@"chooseSortType" object:indexPath];
监听事件并注册响应函数
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableDidSelected:) name:@"chooseSortType" object:nil];
- (void)tableDidSelected:(NSNotification *)notification {
NSLog(@"clicked");
}