Tagged Questions
The nsnotification tag has no wiki summary.
10
votes
2answers
831 views
Does the NSNotification retain the object?
My question is in regards the object that gets added to a [... postNotificationName: object: userInfo: ] method.
Does the NSNotification retain the object ?
(in a similar fashion to ...
4
votes
1answer
2k views
addobserver / removeobserver query
Is it OK to use -removeObserver: first and then call -addObserver: with the same name? Or is it a rule to have -addObserver: first before -removeObserver:?
I tried it using OS 4.0 and it seems OK (no ...
4
votes
2answers
5k views
What is NSNotification?
Can anybody explain the importance of NSNotificationCenter?
Where to use them?
What is the difference between NSNotificationCenter vs. AppDelegate?
3
votes
1answer
83 views
How to prevent cheaters beating NSDate for iPhone games?
I'm currently playing around with NSNotification (or local notifications in general terms) for a product management game which relies heavily upon the user's NSDate/Time and then use local ...
3
votes
2answers
166 views
NSNotification leads to segmentation fault
I have a strange behavior with an NSNotification object.
My app has an navigation controller, first view is a table view and the second view is just a view controller which shows data of the selected ...
3
votes
2answers
177 views
NSNotification to detect other program's crashes
I was planning on writing a small daemon that detected whether another app crashed, thinking all the while that the system would send an NSWorkspaceDidTerminateApplicationNotification, but this is not ...
3
votes
1answer
4k views
How to create a class to send and receive events through NSNotificationCenter in Objective-C?
I need to create two classes and both should be able to send and receive the events through the NSNotificationCenter methods.ie Both should have the sendEvent and receiveEvent methods:
...
2
votes
1answer
40 views
Get notified by the time a new object is added to a NSArrayController
I want to execute a method (or selector) every time a new object has been added to my array controller.
I guess it can be somehow done with key-value observing, but I don't exactly know how.
Can ...
2
votes
4answers
120 views
Interrupting a loop using NSNotification
I have a class containing a method with a loop. I need to be able to break the loop if a certain event (e.g. button press) occurs.
I am using the NSNotificationCenter to notify the class containing ...
2
votes
1answer
137 views
KVO observation vs NSNotificationCenter observation
I'm wondering if there is a reason to use one over the other in KVO vs NSNotificationCenter observations. Performance, memory usage, speed, etc?
2
votes
2answers
386 views
NSNotifications name best practice
In trying to de-couple my model from the view controllers that display fetched data, when an asynchronous fetch completes, I post an NSNotification.
[[NSNotificationCenter defaultCenter] ...
1
vote
1answer
29 views
Creating No Empty Selections in NSCollectionView
I have set up an NSCollectionView in a cocoa application. I have subclassed the collection view's NSCollectionViewItem to send me a custom NSNotification when one of its views it selected / ...
1
vote
0answers
63 views
NSNotification not sent/received
I've been trying to figure this out for a whole day now and I'm starting to become desperate...
So here is my problem:
I have a table view controller showing a list of files. The user can download ...
1
vote
1answer
62 views
NSNotificationCenter Observer stops receiving events when app is out of focus on Lion
I have an app that subscribes to a specific kind of notifications from the default NSNotificationCenter.
On OSX Lion, it works fine, except that when the app loses the focus (another app becomes ...
1
vote
0answers
15 views
Enforcing protocol of a NSNotification
I have a model made up of three objects, a base model object, a specific model object (generalStatus as an example) and an genericXML getter object. The getter object is passed into the model so I ...
1
vote
4answers
144 views
Test type of NSNotification
I need to check whether an object is an NSNotification. It is not enough to know if it is a subclass, as I want to differentiate between whether it is an NSNotification or a subclass of ...
1
vote
3answers
94 views
Subclassing NSNotification
I am trying to subclass NSNotification.
Apple's docs for NSNotification state the following:
NSNotification is a class cluster with no instance variables. As such,
you must subclass ...
1
vote
1answer
143 views
“unrecognized selector sent to instance” when keyboard appears
When I click a text field into my app screen and the keyboard is showing up xcode debugger shows this error:
[mainViewController keyboardWasShown]: unrecognized selector sent to instance 0x5867ac0
...
1
vote
2answers
144 views
Overhead of NSNotifications
I recently started using NSNotifications:
[[NSNotificationCenter defaultCenter] postNotificationName: selector: object:]; ....
I find it to be an awesome concept for communicating between view ...
1
vote
2answers
347 views
NSNotification-based iOS App
I am currently thinking about the data-model for my iOS App. The app does only receive Information from a server and therefore, the "model" itself generally does all the web-requests, ...
However, ...
1
vote
0answers
79 views
need Database writing to happen in NSNotification call-back method
I make a call to a web service, passing a parameter and then register an observer in a viewcontroller class (to notify completion of download) :
[self callWebservice:parameter1];
...
1
vote
1answer
365 views
Best practice for applicationDidEnterBackground
I am in the middle of writing an application that needs to reset certain parts of its state to a default state when the application calls applicationDidEnterBackground. What I would like to know is if ...
1
vote
2answers
327 views
How to use NSNotification in following scenario (IPhone SDK)?
Considering real life situation, suppose i have assigned some work to 3 people(say Person A, Person B, Person C), instead of waiting for them to complete a task each, i want that when each Person ...
1
vote
2answers
204 views
When responding to NSNotifications, what is the best practice for updating UIViews
Since the NSNotification invokes its selector on a thread other than the main thread, I notice that any changes that you make to UIViews or other interface elements in response to that notification ...
1
vote
1answer
821 views
iOS - NSNotificationCenter multiple UIKeyboard notification
I have two view controllers let's call them A and B
(1) in A I show a popOver containing a textField
(2) in B there is an UITextView used for simple text editing
I Have to manage the keyboard in A ...
1
vote
1answer
278 views
Difference between NSNotification and NSEvent
I don't really understand the difference that cocoa makes between a notification and an event.
For instance I could have code like this:
-(void)mouseMoved:(NSEvent*)event { … }
but not
...
1
vote
1answer
359 views
Class as NSNotification observer?
Should it be possible to have a static NSNotification observer (like the code below)? I'm having some problems, and I think it may be due to my singleton class structure.
I don't always have a class ...
1
vote
2answers
488 views
iOS - NSNotificationCenter memory leak
Instruments reports this a memory leak (98.6%, whatever that means):
[[NSNotificationCenter defaultCenter] postNotificationName:kNotificationSomeNotification object:self];
"self" is a subclass of ...
1
vote
0answers
457 views
MPMoviePlayer No Longer Seeks Forward and instead gives warning
So it appears as though my MPMoviePlayer no longer wants to seek forward, despite it being the case that seeking is done internally by the MoviePlayer, so all I should be doing is setting up ...
1
vote
2answers
247 views
Releasing while notifying
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.
...
1
vote
2answers
3k views
Custom Keyboard (iPhone), UIKeyboardDidShowNotification and UITableViewController
On an iPhone App, I've got a custom keyboard which works like the standard keyboard; it appears if a custom textfield becomes first responder and hides if the field resigns first responder. I'm also ...
1
vote
2answers
2k views
UIWebView/MPMoviePlayerController and the “Done” button
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. ...
1
vote
2answers
717 views
NSNotification the right choice for detecting changes?
I have a custom subclass of UIView that needs to perform a selector when a value (NSInteger) falls below a certain value. From what I can tell from the docs, I need to set up an observer object to ...
1
vote
1answer
307 views
How to check for request time out , is there a notification I can set?
I want to check for whether the request has timed out after some period.
I know NSNotifiactionCenter ,but don't know how to set the request time out notification for it.
thanks.
0
votes
2answers
28 views
NSNotificationCenter Post to nil -> crash
My TableViewCell register for Notifications. But i can't unregister because i don't know when.
I tried to subclass NSNotificationCenter but i didn't tried it the right way.
Some Ideas how to fix ...
0
votes
1answer
23 views
NSNotification Log statement repeats
I'm creating an app but I'm having a bit of a problem, not a fatal error problem but a annoyance.
Basically my NSNotifications are staying around after my view is released
so when I bring my view ...
0
votes
2answers
55 views
nsnotificationcenter method fired more than once
i have a viewcontroller .In it there is a nsnotification observer in it. i am posting the notification from another viewcontroller.but the nsnotification observers selector get fired two or sometimes ...
0
votes
1answer
68 views
NSNotification and NSThread
I create an object on a seperate thread using NSThread.
NSThread* myThread = [[[NSThread alloc] initWithTarget:self selector:@selector(createNewObject:) object:elements] autorelease];
[myThread ...
0
votes
0answers
51 views
How to detect which UITextField is triggering keyboard in NSNotification Center
I'm trying this code to add a "Done" Button on a NumberPad Keyboard. In my application I have two different views with one textfield on each. The notification is set in first view ViewDidLoad and ...
0
votes
0answers
39 views
NSNotification Not Received On 4.3; Works on 5
I have a piece of code sets up an observer for the custom NSNotification.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(refreshView) name:@"UpdatedDeals" object:nil];
...
0
votes
2answers
31 views
NSNotification and suspended apps that are terminated
How does ios deal with notifications for an app that it decided to terminate while the app was suspended? My understanding is that suspended apps do not get warned and so can't remove it's observers ...
0
votes
2answers
92 views
iOS NSNotification - how to safely ignore when coming out of suspended
Sometimes, when the app I'm working on comes out of suspended mode, I need to make sure it does not respond to the notifications iOS has saved for it while the app was suspended. Where's the right ...
0
votes
2answers
80 views
Does NSNotification work everywhere?
I'm sending a notification using:
[[NSNotificationCenter defaultCenter] postNotificationName:@"historyLoaded" object:jsonReturn];
And receiving the notification using:
[[NSNotificationCenter ...
0
votes
1answer
65 views
NSApplicationWillTerminateNotification not Working
My problem is that the NSApplicationWillTerminateNotification is not called when I quit my application. What I have tried: (appDelegate.m)
- (void) applicationDidFinishLaunching:(NSNotification ...
0
votes
1answer
217 views
NSUserDefaultsDidChangeNotification while app is closed
An app I'm working on stores the user's info for syncing with a webservice in the settings bundle. I was able to successfully detect a change using the NSUserDefaultsDidChangeNotification ...
0
votes
3answers
164 views
Send NSNotification from classA to classB
So i have an app with an In App purchase. The In App purchase is managed in FirstViewController. When the user has purchased the product, i want to send out a Notification to my ...
0
votes
2answers
158 views
Giving notification to another class with NSNotificationCenter
So my goal is to deliver a notification to another class with using NSNotificationCenter, I also want to pass object with the notification to the other class, how should I do this?
0
votes
0answers
270 views
how to get NSNotification for the movieplayer that is opened from the UiWebView?
I have a UiWebView inside which I open m.youtube.com and when I click one of the Youtube videos, it plays that video in a movieplayer. My requirement is this: I would like to handle the Pause/Play ...
0
votes
0answers
106 views
Speeding up setRegion:animated: in MapKit
I'm currently working on an iPad application that involves placing overlays on an MKMapView. The problem is following the line that is being drawn via some notifications and such. I can follow it just ...
0
votes
0answers
328 views
issue with seeking forward/backward using MPMoviePlayerController in iOS4
I have a weird issue with the MPMoviePlayerController in iOS.
I have a MPMoviePlayerController with control style none.
Added my own UISlider to seek forward/backward in the movie.
Set up ...