プログラミングのデザインパターンをうまく構成するのはなかなか難しい。そこで一つ使えるのがNSNotificationCenter。使い過ぎは要注意。
Create a notification:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myMethod) name:@"myNotification" object:nil];
Call it from anywhere in your code:
[[NSNotificationCenter defaultCenter] postNotificationName:@"myNotification" object:nil userInfo:nil];
No comments:
Post a Comment