Tagged Questions

NSNotification objects encapsulate information so that it can be broadcast to other objects by an NSNotificationCenter object.

learn more… | top users | synonyms

10
votes
2answers
830 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 ...
8
votes
6answers
3k views

NSNotificationCenter vs delegation( using protocols )?

What are the pros and cons of each of them? Where should I use them specifically?
6
votes
4answers
1k views

How can I get notified of a system time change in my Cocoa application?

I have a Cocoa application that records datestamps on events. I need to know when the system time is reset and by how much, but I can't seem to fine a notification anywhere that tells me such a thing ...
5
votes
2answers
1k views

NSNotificationCenter: Do objects receive notifications on the same thread they are posted?

I am interested in knowing whether I can expect the observing object's method to be pushed onto the stack before the posting object's method has been completed and removed.
4
votes
3answers
567 views

How To set Custom repeat interval For Nslocal Notification…?

i am New to iphone Development .I Am Trying To Use NslocalNotification In My Project I Need To Give Remeinder For Every 2Hours or For Every Two Days Or For Every Two Months Etc..Currently I am Using ...
4
votes
3answers
375 views

Where should I remove a notification observer?

I set up a notification observer in my view controller's init method like so: [[NSNotificationCenter defaultCenter] addObserver:self ...
4
votes
2answers
4k views

How to use parametrized method with NSNotificationCenter?

I'd like to pass dict to the method processit. But once I access the dictionary, I get EXC__BAD_INSTRUCTION. NSNotificationCenter *ncObserver = [NSNotificationCenter defaultCenter]; [ncObserver ...
3
votes
2answers
313 views

Removing a NSNotificationCenter observer in iOS 5 ARC

I have an iOS 5 ARC-based project, and am having difficulty about where I should be removing the observer for the NSNotificationCenter observations which I have registered within a UIViewController. ...
3
votes
1answer
103 views

Notification from background thread in C callback

As my first Mac application, I'm building an app that displays incoming MIDI timecode. Therefore, I am having an instance of the RtMidi "library" which wraps the MIDI in and out stuff. The Mac OS Core ...
3
votes
1answer
90 views

Is there a notification on iOS if a UIAlertView is shown?

Wondering if there is a notification available if a UIAlertView pops up? Background: my app asks the user for a PIN after a period of inactivity but I would like to prevent it if an alert is on ...
3
votes
2answers
94 views

How to receive NSNotifications from Objective-C in C++ classes?

I have an Objective-C++ class that adds itself as an observer for an event on a Cocoa NSView. I would like to be able to send the NSNotifications to a method of a C++ class instead of an Objective-C ...
3
votes
2answers
151 views

Notification not getting called

In a class when a method is performed, I have put this: [[NSNotificationCenter defaultCenter] postNotificationName:@"locationFromZipFound" object:array]; and in the class that I wish to recieve ...
3
votes
1answer
528 views

Performance speed of KVO and NSNotifications?

Should I be afraid of using Key-Value Observations (KVO) and NSNotifications? I'm beginning to use them in my app, but I'm a little unfamiliar with the concept of something that could possibly be ...
3
votes
1answer
712 views

Warning about duplicate NSNotification observations

This isn't a question so much as a warning to others to save them some time. NSNotificationCenter on iOS 3/iPhone OS 3 (I'm assuming also Mac OS X and iOS 4) has the following behavior: If you ...
3
votes
1answer
1k views

NSNotification vs. Delegate Protocols?

I have an iPhone application which basically is getting information from an API (in XML, but maybe JSON eventually). The result objects are typically displayed in view controllers (tables mainly). ...
3
votes
3answers
1k views

Global Mouse Moved Events in Cocoa

Is there a way to register for global mouse moved events in Cocoa? I was able to register for the events using Carbon's InstallEventHandler(), but would prefer a Cocoa equivalent. I have looked for ...
3
votes
2answers
1k views

Best practices for passing data between processes in Cocoa

I am in the middle of solving a problem which requires me to do the following in my 64-bit Cocoa application: Spawn a 32-bit Cocoa helper tool (command line tool) from within my application. This ...
2
votes
1answer
76 views

Is there any reason why using an NSMutableDictionary would crash NSNotificationCenter?

When posting notifications with NSNotificationCenter, is there any reason why passing in a NSMutableDictionary instead of an NSDictionary as the userInfo could cause a crash? - ...
2
votes
3answers
61 views

NSNotification: does the object property have to be self?

So far I have been using NSNotificationCenter with the method postNotification:aString object:anyObjectOfInterestForTheReceiver. But recently I read in the documentation that the object field should ...
2
votes
1answer
203 views

iOS Refresh button in View Controller Nav: reloading all tableViewCells created from parsed JSON when clicked

I've got a fairly important conceptual issue that many people have asked about, but there isn't a readily available clear answer to be found by searching. My application is simple: Several rows of ...
2
votes
0answers
72 views

MPMoviePlayerController sends “end of movie reached” when URL is changed

I'm trying to get a notification from a MPMoviePlayerController when the movie has reached its end. I'm running the player in embedded mode with a local file. Like the docs suggest, I registered for ...
2
votes
2answers
169 views

is it ok to use of a notification to communication back to the main thread of an IOS app? (cf performSelectorOnMainThread)

Is it ok to use of a notification to communication back to the main thread of an IOS app? (cf performSelectorOnMainThread). That is, there are are there any gottcha's for this purpose? Background ...
2
votes
1answer
152 views

How to pass object with NSNotificationCenter

I am trying to pass an object from my app delegate to a notification receiver in another class. I want to pass integer messageTotal. Right now I have: In Receiver: - (void) ...
2
votes
1answer
74 views

Change view after playing video

My Video works when I click my play button, and I know the code for my view change works. I just can't seem to get the view to change after my video is done playing, not sure what is going wrong. Any ...
2
votes
2answers
38 views

Is casting ever required for the object on an NSNotification?

When I receive an NSNotification do I ever need to cast notification.object? Suppose I know notification.object will be an instance of MyClass and I do the following: MyClass *myClass = ...
2
votes
2answers
116 views

Cocoa NSNotificationCenter communication between apps failed

I need to communicate between two different console apps, Observer and Client. In the Observer app I added this code: [[NSNotificationCenter defaultCenter] postNotificationName:@"MyNotification" ...
2
votes
2answers
114 views

NSNotificationCenter Simple Scope Question [Updated]

So I'm new to NSNotifications, I am wondering what the scope is. I.e. If I have an Application Delegate Class, and it is the receiver of a notification: -(id)init { [ super init]; if (!self) ...
2
votes
1answer
49 views

Objective C: Any issues in having 2 NSNotifications set up in a single class?

I have a class with 2 NSNotifications implemented //Set up notifications [[NSNotificationCenter defaultCenter] addObserver:self ...
2
votes
3answers
757 views

Objective C: Where to remove observer for NSNotification?

I have an objective C class. In it, I created a init method and set up a NSNotification in it //Set up NSNotification [[NSNotificationCenter defaultCenter] addObserver:self ...
2
votes
1answer
138 views

Is there anyway to call the NSNotificationQueue like a thread?

Is it possible to run the notifications like´ -(void) testMethod { [[NSNotificationQueue defaultQueue] enqueueNotification:[NSNotification notificationWithName:@"TEST123" object:self ...
2
votes
3answers
764 views

Delegates and performSelectorOnMainThread

I'm slightly confused over the use of these two. I have a background thread which does the heavy lifting of downloading data and applying it to the Core Data Database within the iOS device. The code ...
2
votes
2answers
134 views

QTCaptureDeviceWasConnectedNotification problem

I am developing a Desktop application that lists the webcams connected to the system. When the user selects the web-cam app streams from the device to the QTCaptureView. I have registered to the ...
2
votes
2answers
118 views

work with notification

I want to postnotification when my button touchupinsideevent is done. I want this without writing anything on button's event function please don't give me any reference book link i want code brief ...
2
votes
1answer
1k views

NSNotificationCenter trapping and tracing all NSNotifications

For some better understanding on what happens “under the hood”, I would love to do a complete trace of any notifications happening within my application. Naïve as I am, the first thing I tried was ...
2
votes
1answer
130 views

Playing multimedia content in sequence

Hi I have an NSArray containing many 'multimedia action' as I like to call them, objects that encapsulate some multimedia content like movies and photos. I'd like to 'play' them in sequence waiting ...
2
votes
1answer
200 views

NSNotification when device time changes (minutes)?

Is there a way I can easily set up a notification when the minutes change on the system time for iOS devices? I need to do some UI updates for time changes. I'd like the UI to update exactly on ...
2
votes
2answers
540 views

Network Connection NSNotification for OSX?

I simply need to have a notification post when a valid IP address is assigned. I have tried polling via SCReachability, but that seems to be inefficient. Any suggestions? This seems like it should ...
2
votes
1answer
340 views

Common NSNotification mistakes?

A simplification... A building has an array of apartment objects. Each apartment has a single currentTenant. These tenants are of type Person. Note that currentTenant doesn't have a reference to ...
2
votes
1answer
561 views

NSNotification and Multithreading

I'm trying to get the notification NSTaskDidTerminateNotification in my multithreaded app but I can't get it working. It does seem to work when I tested it on a single threaded app. In init I have ...
2
votes
2answers
212 views

NSNotification race condition

Are there any race condition issues when using NSNotifications within a single thread? Here is a sample method: - (void) playerToggled: (NSNotification *) notification { if (timerPane.playing ...
2
votes
1answer
288 views

How to send and recieve data along with the event in Objective-C?

I created a program to send and receive events through NSNotification. Now i need to send data along with the event. Can anyone suggest me how to do this in coding in Objective-C??
2
votes
1answer
405 views

Defining name strings for NSNotification usage without coupling

I'm going to be using NSNotifications in my app to decouple the code. I want the compiler to help me when using strings as the names of the notifications, ie, if I mistype one, I want the compiler to ...
2
votes
2answers
182 views

Why is my value passed through NSNotifcationCenter not preserved?

I'm trying to send a CGPoint through an NSNotification like this -(void)setPosition:(CGPoint)point { NSString *pointString = NSStringFromCGPoint(point); NSDictionary *dict = [[NSDictionary alloc] ...
2
votes
5answers
2k views

Registering a Notification in iPhone SDK 3.0

In iPhone SDK 3.0, I would like to register for a notification, which would alert my application when a certain time is reached. Is it possible? Thanks
2
votes
2answers
2k views

Do I need to autorelease an object before sending it to NotificationCenter as a userdata?

I need to post a notification using postNotificationName:object:userInfo: method, and I'm passing a custom class FileItem in as userInfo so I can obtain it on the other end. Should I use autorelease ...
2
votes
1answer
532 views

Best way to post NSNotification with NSRect info?

what is the best way to post a notification with NSRect info? Here is my current solution (using NSStringFromRect). - (void)postNotificationForDirtyRect:(NSRect)rect { NSDictionary *userInfo = ...
1
vote
1answer
27 views

NSNotification observed in super class and handled in super and child class

I have class ParentClass that observes an NSNotification. ParentClass handles the notification. ChildClass inherits ParentClass and also handles the notification. Is the order in which the ...
1
vote
2answers
46 views

how can we use combination of NSThread and NSNotification?

I am doing an application where images from the user are taken all together and saved in NSMutableArray. As soon as even one image has been start coming, I need to upload images to server one by one ...
1
vote
1answer
78 views

Problems with NSNotificationCenter and UIPickerView

I hope I have better luck with someone helping me on this one: I have a UIPickerView where a user makes a selection and then presses a button. I can gladly obtain the users choice, as shown in my ...
1
vote
1answer
167 views

NSNotificationCenter addObserver not responding

In my app (game) I'm trying to use the NSNotificationCenter to pause and resume the game when either the center/home or lock button is pressed. This is the code I'm using: [[NSNotificationCenter ...

1 2 3 4