I have an object id currentObject; which I want to pass through notification. The problem is I don\'t know how to release it correctly and the memory management documentation is driving me crazy.
In my iPad app, in one class I register for a notification: NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
I have a class A which is a subclass of uitableviewcontroller and one more class B which actually displays my tableview with its content is a subclass of A.
I am using the UIWebView to load both streaming audio and video. I have properly set up the UIWebView delegate and I am receiving webViewDidStartLoading and webViewFinishedLoading events perfectly. Th
开发者_如何学运维Can anybody explain the importance of NSNotificationCenter? Where to use them?
Been looking for a solution for a long while now, but still no success, perhaps someone here can help me.