Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

47
votes
1answer
25k views

How to send and receive message through NSNotificationCenter in Objective-C?

Hi I need a simple example program to send and receive a message through NSNotificationCenter in Objective-C ???
10
votes
2answers
1k views

OSX: Detect system-wide keyDown events? (Solved, with sample code)

I'm working on an typing-tutor application for Mac OSX that needs to have keystrokes forwarded to it, even when the application is not in focus. Is there a way to have the system forward keystrokes ...
5
votes
1answer
174 views

What is the difference between NSNotificationCenter and the Key Value Observing technique?

I just read a couple of tutorials regarding KVO, but I have not yet discovered the reason of its existence. Isn't NSNotificationCenter an easier way to observe objects? I am new to Stackoverflow, so ...
5
votes
1answer
776 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 ...
4
votes
2answers
62 views

sleep mode vs notification center open

in both, 1) iPhone goes in Sleep mode 2) Open notification Center It calls - (void)applicationWillResignActive:(UIApplication *)application Is there any way to identify if this method is called ...
4
votes
2answers
100 views

NSNotification observed by released objects

See Update below... though this initially appeared to be an animation issue, it turned out that it was an issue with notifications. Beware: an NSNotification will be observed even by objects you have ...
4
votes
2answers
469 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. ...
4
votes
3answers
649 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
1answer
617 views

NSNotification removeObserver problem

I am either brain damaged or I am lacking of some understending of NSNotificationCenter The problem is that if I create an observer and in the next line will try to delete it like so: ...
4
votes
1answer
1k views

postNotificationName:…] throwing “EXC_BAD_ACCESS” exception

A UIViewController adds itself to the default center... [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(editFood) name:@"editFood" object:nil]; Then a UITableView ...
3
votes
3answers
787 views

How to receive NSNotifications from UIWebView embedded YouTube video playback

I didn't received any notifications for MPMoviePlayerController. What am I doing wrong? I use following logic. I'm begining to play youtube video in UIWebView. UIWebView calls a standard ...
3
votes
1answer
194 views

Objective-C Automatic Reference Counting (ARC) and Key-Value Observing

I'm writing an Objective-C application using ARC and it's definitely a great improvement even though I never really minded retain counts. However, there's one case I couldn't find in the documentation ...
3
votes
2answers
221 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 ...
3
votes
1answer
207 views

How can I listen for all notifications sent to the iOS NSNotificationCenter's defaultCenter?

I want to listen to all notifications dispatched to the defaultCenter. Both public and private. Does anyone know how I can do this?
3
votes
1answer
85 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 ...
3
votes
1answer
107 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
1answer
1k views

NSNotification in iphone

i am sending NSSNotifcation to another view controller in iPhone app but its observer method getting notified two times how its possible can any one guide me i have use this code to post notification ...
3
votes
5answers
8k views

iOS/iPhone Reachability - How to only check when internet is lost/not reachable using Reachability.m/.h

Currently i am using the class by apple reachability.m/.h and it works, except it notifies me for any change, where as i would like to only notify the user if the network is not reachable. Currently ...
3
votes
1answer
852 views

iphone notification results in “unrecognized selector sent to instance…”

To make it short, I'm registering the following NSNotification listener in ClassA (in viewDidLoad): [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playSong) ...
3
votes
2answers
2k views

Reachability network change event not firing

My iphone app is pretty simple with one view that handles everything, in viewDidLoad I check to see if we have an internet connection and if we do we load from the web and if not we load from a local ...
3
votes
2answers
3k views

How to pass a NSDictionary with postNotificationName:object:

I am trying to pass an NSDictionary form a UIView to a UIViewController using NSNotificationCenter. The dictionary works fine at the time the notification is posted, but in the receiving method I am ...
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
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: ...
3
votes
3answers
3k views

NSOperation and NSNotificationCenter on the main thread

I have an NSOperation. When it is finished I fire a NSNotificationCenter to let the program know that the NSoperation is finished and to update the gui. To my understanding listeners to the ...
2
votes
0answers
15 views

Is it possible to receive URL data without adding callbacks in the UIApplicationDelegate?

I'm writing a shared manager class. It knows to start and stop some services by listening for the UIApplicationDidBecomeActiveNotification and similar. It's also supposed to do is to handle a ...
2
votes
1answer
98 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
1answer
101 views

Incoming text messages iOS5 cannot be detected by app

My app (using AVMoviePlayer) crashes when an incoming text message is received, as well as a local notification from another app. These messages usually appear in that thin notification center at the ...
2
votes
2answers
235 views

Notification Center in C++

After programming for sometime with the iOS and Mac objective C frameworks, I have come to love the generic notification pattern implemented by the NSNotificationCenter and NSNotification classes. ...
2
votes
1answer
190 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
61 views

how to tell what is the current UIView/UIController after an iPhone app in brought back to foreground?

After an iPhone app is put into background, then the user clicks on it again and it comes back to foreground, THEN Question - How to tell what is the current UIView/UIController after an iPhone app ...
2
votes
2answers
134 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
1answer
177 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
1answer
124 views

Mac OS X - How to monitor a window change event?

I'm developing a Cocoa application that shows a list of opened windows and highlights the current focused one. My problem is that I can't find a system notification to inform my app that the main (aka ...
2
votes
2answers
133 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
3answers
50 views

Is there any harm in creating a “private” instance of NSNotificationCenter?

I'm using notifications to provide two-way communication between a pair of objects, where object A makes a request but may get deallocated before object B responds. NSNotificationCenter is perfect ...
2
votes
1answer
293 views

-[NSNotificationCenter postNotificationName:object:] Can I pass nil for object?

Can I pass nil for the object argument of -[NSNotificationCenter postNotificationName:object:] since the observers don't care who the sender is, or is it better practice to pass self for the object ...
2
votes
1answer
286 views

NSDistributedNotificationCenter notification failed?

I am trying to post a notification in NSDistribtedNotificationCenter but I get these messages in console: 3/22/11 10:26:53 PM AIM[138] * Attempt to post a distributed notification ...
1
vote
1answer
36 views

How to determine which NSNotification is crashing due to dealloc-ed observer

The golden rule of using NSNotification seems to be "call removeObserver before the observer (or the object) is deallocated". I'm dealing with a codebase where this rule hasn't been followed, ...
1
vote
2answers
32 views

NSNotificationCenter can lead to bugs. Do you know more elegant solutions?

I can add observer twice (by accident) to the notification center and I will get notifications twice. Is it possible to get only one notification? Do you know more elegant solutions? I show you ...
1
vote
1answer
20 views

Multiple Methods NSNotificationCenter iPhone

I have many methods that need the previous one to complete before firing the next one. I'm thinking I should NSNotificationCenter rather than performSelector afterDelay and just hope the method is ...
1
vote
1answer
101 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
256 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
vote
1answer
79 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
1answer
80 views

Changing Background Image for Mainview

I am fairly new to Objective-C, but haven't been able to find the answer I am looking for yet. I am building a practice app which counts down days till specific events (christmas). It all works well, ...
1
vote
2answers
137 views

NSNotificationCenter help?

i have a class to read barcode, and when i read barcode i post a notification to NSNotificationCenter as below . -(void)barcodeData:(NSString *)barcode type:(int)type { barcodeValue = barcode; ...
1
vote
1answer
486 views

iOS5 app is not listed in Notification Center

My app uses Local Notifications to communicate with the user. The legacy code for iOS4 is working well, but in iOS5, notifications are not shown. After reading on the web, I added the following in ...
1
vote
5answers
211 views

how to buffer incoming events/notifications your iPhone app is observing so as not to trigger event code for each event?

What is the best way to buffer incoming events/notifications your iPhone app is observing so as not to trigger event code for each event? A code sample would be great... e.g. would it be to create ...
1
vote
1answer
101 views

How to override superclass' s NSNotificationCenter listener method?

Say I have superclass which listens to a notification: @implementation SuperClass - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [[NSNotificationCenter defaultCenter] ...
1
vote
3answers
183 views

When should UIViewController add/remove observers on NSNotificationCenter?

If I add an observer to the [NSNotificationCenter defaultCenter] in my viewDidLoad should I be removing it in viewDidUnload?
1
vote
1answer
508 views

iOS5 Push notifications, Are their any alternatives to the Notification Center?

I have 2 related questions regarding the new push notification in iOS5: if my application is not running/ in the background - Can the notification arrive to my application silently? Can i revert ...

1 2 3 4