observer

NSNotificationCenter: How long does it take to perform an operation

I want to know how long does it take from posting a notification to getting the notification. The reason is that I want to find out if the observer pattern is suitable for me. I don't want that another view controller can change the value before the notification has been sent and processed. I'm afraid that another process (thread?) is f...