大家好
想請問一下
如果我在a程式裡面使用
NSNotificationCenter *nc_in_a = [NSNotificationCenter defaultCenter];
在b程式裡面使用
NSNotificationCenter *nc_in_b = [NSNotificationCenter defaultCenter];
A與B的bundle id不同
想請教一下
假設
a程式的code有
[nc_in_a addObserver: ..... name:@"same_name" ...];
b程式的code有
[nc_in_b addObserver: ..... name:@"same_name" ...];
nc_in_a 與 nc_in_b
是否會互相干擾呢
觀念不是很清楚的部分還請各位指導
謝謝