I have added an observer
override func viewDidLoad()
{
super.viewDidLoad()
NSNotificationCenter.defaultCenter().addObserver(self, selector:\"selector na
I think you should use code
NSNotificationCenter.defaultCenter().removeObserver(self)
Explain: You have mistake here: You are using NSNotification & NSNotificationCenter so you have to using this code above to remove observe. you have use code for KVO to remove observer so it will wrong.
More detail you can read at here. Key-Value-Observing