NSNotification is a class used to send messages to observing classes through NSNotificationCenter.
0
votes
2answers
31 views
NSTimer or NSNotification… which is faster and/or more friendly to iOS system [closed]
BTW: This mostly is in reference to iOS 6+:
I have an app that -- from many different places in the app -- performs a function that can be backgrounded safely, and is thread safe. I do not wish to ...
0
votes
1answer
21 views
iOS application with local and iCloud support
If the ubiquity container (iCloud folder) is not available for whatever reason, I add any new documents to the users 'Documents' directory, however, should it become available again I add the ...
1
vote
1answer
45 views
Observer in NSNotification (itemDidFinishPlaying) RANDOMLY to called twice
I am displaying a text as soon as a video is done playing. I am using a notification technique to achieve that. The only problem is that the Observer is called twice every now and then. It triggers ...
0
votes
1answer
56 views
[NSConcreteNotification isReachable]: unrecognized selector sent to instance
I'm trying to get ASIReachability to work in my app which works when the connection isn't there but when the connection exists it give the following error:
2013-04-08 12:26:20.501 Your Llanelli ...
0
votes
0answers
81 views
NSNotificationCenter Best practices and list of active observers
I have been doing a great deal of work using Notifications in few of my apps, at first they gave me random crashes but then I learned about the best way to use NSNotifications and here are a few best ...
3
votes
1answer
213 views
Passing data between View Controllers using NSNotificationCenter (iOS)
I need to pass a NSMutableDictionary from one class (ViewControllerA) to another (ViewControllerB) using NSNotificationCenter. I have tried the following code but it doesn't work. I actually pass to ...
0
votes
2answers
61 views
not able to get postnotification to work properly
I am trying to use postnotification but not able to implement it properly. This is what I have :
In ViewControllerOne.m
NSLog(@"PostNotification");
[[NSNotificationCenter defaultCenter] ...
3
votes
2answers
106 views
Need NSNotification to work through the whole app in iOS
I need to check whether your wifi status has changed throughout the whole app. I am using Reachability to check whether the wifi status is on.
I have set up an observer like this:
...
1
vote
2answers
166 views
Post NSNotification to new ViewController
I have Tabbed Application with 5 tabs.
App starts on tab with index 0
When my app recive push notification, i want to push new view controller in tab with index 1.
My code:
AppDelegate
- ...
0
votes
1answer
81 views
Trying to call multiple viewControllers one at a time via NSNotifications in iOS
I have an application that I am working on that has several viewControllers, with each one displaying a single test for the user to do. At the moment, the user is able to go through each one ...
0
votes
1answer
244 views
Using iOS GCD and NotificationCenter to alert user when asynch data load is complete (async load of several datasets one at a time)
I am writing an iPad App in which I load data for a multi-storied building asynchronously. I have set up NSNotifications to alert the user once data-load for all floors is complete.
The data load for ...
0
votes
0answers
36 views
UikeyboardWillShow load in multiple times
I declared NotificationCenter Event in View Did Load
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(KeyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
...
6
votes
2answers
87 views
Class method and instance method with the same name in Objective-C
I have a solution for a notification problem which works well, but I'm afraid might be a bad idea.
I have a notification that needs to be handled by each instance of a class and by the class itself. ...
-1
votes
1answer
31 views
How many local push NSNotifications can I set ? [closed]
I have to set many NSNotifications to use local push alarm in iOS. I have more 300 notifications to set. But it's too late to set.
I tried to set in background:
- ...
0
votes
1answer
43 views
Is there a way to recognise from which application NSNotification / NSEvent came?
I have started listening to global keyDown events. Is there a way to get information from which application that event came?
A handler receives NSNotification instance and NSEvent is part of it. Can ...
1
vote
1answer
123 views
Refreshing a view from a popover
I am using Xcode 4.5 and targeting iOS 5 and above.
I have a popover that allows a user to change the background of the underlying view.
When tapping on the "button", it requires that I tap twice to ...
0
votes
0answers
13 views
NSNotification Conundrum
I'm looking to add multiple observers to NSNotificationCenter and have them updated whenever they are told to via notification. These observers are going to be instances of a class and will each be ...
0
votes
2answers
389 views
Text Field not being updated in NSNotification
I am doing a simple tutorial on NSNotification and facing some problems in executing it properly. When I click the button on the First View, the text field in the second view does not get update. When ...
0
votes
2answers
360 views
why isn't removeFromSuperview removing my movie subview? Xcode
I'm trying to get a movie that plays to dismiss on its own without having to hit the "Done" button. I think it's a recent iOS 6 problem since I'm following a tutorial exactly and when I insert NSLogs ...
0
votes
5answers
222 views
How do I check if an UIViewController is currently being displayed?
How do I check if an UIViewController is currently being displayed?
My UIViewControllers are listening for NSNotifications - even if when they are not displayed (ie not shown). So I could have 10 ...
5
votes
1answer
2k views
MPMoviePlayerController will not automatically dismiss movie after finish playing (ios 6)
I may not have worded my title very well, maybe more correct to say my NSNotification isn't dismissing my movie's view after it's done playing. I've found others with this problem but no solutions, ...
0
votes
1answer
123 views
Core Data NSNotification in awakeFromFetch Causing Crash
I'm sure someone's seen this before and I'm probably missing something obvious... Here's the brief rundown: I have a Core Data app, it has Car and CarMileage, which is more accurately thought of as a ...
1
vote
0answers
86 views
UITableView editing using notifications?
I have a UITableView with an edit/done button. I would like to make some changes when it enters into edit mode. At the moment, I have overwritten setEditing:animated, but that seems fishy. Is there a ...
0
votes
0answers
513 views
iOS: Correctly handling keyboard notifications
In my application delegate I am observing the keyboardWillAppear/Disappear notifications and setting the frame of the root view controller to shrink when the keyboard is displayed. This works great... ...
0
votes
1answer
151 views
Available Notifications For NSDistributedNotificationCenter
I was looking for a list of Distributed Notifications that exists on mac like iTunes com.apple.iTunes.playerInfo but I couldn't find anything. I was wondering if other applications like Safari or ...
1
vote
2answers
262 views
iOS / Objective-C: NSNotification
I´ve got a question based on the NSNotification in Objective-C:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(method:)
...
0
votes
1answer
96 views
Is there a way to access the notifications shown in the notification center?
I have kind of to-do local notifications that are fired OK.
So for example if 2 notifications have fired the badge number goes to 2.
Now I like to handle these notifictaions also when the user just ...
0
votes
1answer
1k views
NSNotificationCenter AppDelegate post notification problems
My application performs a series of processing methods once a day or when a local notification is received to perform the series of tasks and is working as expected.
I tried adding an ...
0
votes
1answer
29 views
Is it necessary to Remove viewController as observer during an edit in an iCloud app?
Take the example of two iOS device running the same app that has iCloud support.
The app has CoreData and is "Library" style, not a multiple document
style app.
User A is adding an object using the ...
0
votes
1answer
348 views
OSX Entitlement For “system-socket” Responsible for CWInterface Notifications?
When I register for CoreWLAN notifications (with a retained interface) like this:
[[NSNotificationCenter defaultCenter] addObserver:self
...
1
vote
1answer
184 views
NSNotifications vs delegate for multiple instances of same protocol
I could use some architectural advice. I've run into the following problem a few times now and I've never found a truly elegant way to solve it.
The issue, described at the highest level possible:I ...
0
votes
1answer
152 views
Is there a way to limit NSNotification?
I use NSNotification to send notification when switch is changed position to start updating annotations on map. My problem is that I have 8 switches and when user change position of few switches, map ...
1
vote
2answers
1k views
KVO - How to get a list of an objects registered observers
I am registering an observer on a bunch of tableview controllers dynamically so I need to remove previous observers if they were registered on the same object. To do this I need to check if the ...
3
votes
1answer
310 views
NSNotification troubles
When my class initializes, it adds itself as an observer for a bunch of different Wi-Fi notifications. For some reason, the selector isn't running when any of these things happen. Any ideas? Thank you ...
1
vote
1answer
106 views
NSNotification with multithreading XCODE
I am a newbie to IPHONE development. I am facing a issue in working with NSNotification with multithreading.
I have a few images in a gallery.I select the image. Selected images get stored in core ...
0
votes
1answer
140 views
How can I observe when an NSURLConnection is cancelled?
How can I observe when an NSURLConnection is cancelled?
I have a method.
- [TSMWebServer sendPage: withArguments: etc...]
The sendPage method returns an "NSURLConnection" pointer. I need the ...
0
votes
1answer
41 views
Does NSNotification somehow use threads internally?
NSNotification is non-blocking call. Does it mean it runs threads internally somehow ? If not what happens actually: when observer receives the event it executes the handler then the observee ...
0
votes
2answers
82 views
How to stay MVC!! :)
I am very new to coding but I am striving to maintain a MVC design pattern at all costs!
I have an app whereby a tableview is selected which pushes to a new tableview. The plist and dictionaries are ...
1
vote
2answers
201 views
Logging NSNotifications
I would like to log any NSNotifications posted by a single NSNotificationCenter shared accross my application. I have tried subclassing NSNotificationCenter with the intention of adding logging code ...
3
votes
4answers
1k views
Which is a better way to remove Notification observer
I usually use NSNotification like the sample below:
In viewDidLoad:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(foo:) name:kName1 object:nil];
[[NSNotificationCenter ...
3
votes
1answer
3k views
Text from UITextFieldTextDidChangeNotification
I have a UITextField with this NSNotification:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldDidChange:) name:@"UITextFieldTextDidChangeNotification" ...
4
votes
1answer
230 views
Should I unregister NSNotification both in viewDidUnload and dealloc?
I register a NSNotification in viewDidLoad method.
Should I unregister it both in viewDidUnload and dealloc method using the code below?
[[NSNotificationCenter defaultCenter] removeObserver:self];
...
1
vote
1answer
396 views
Cocoa - finding out when an NSTabView has changed its tabs
how can I find out when a NSTabViewItem has been changed, i.e. a user has changed the view of an NSTabView.
Ideally I want to generate a notification but any solution would be welcome.
Thanks!
1
vote
1answer
236 views
Cocoa - finding out when a window has been closed, minimized or tabbed
how do you find out when a cocoa application has been closed, minimized or tabbed?
I have read up on NSNotifications however, I still cannot understand how I can find out when the user has done any ...
0
votes
1answer
93 views
Cocoa NSNotification monitor process
I want to use NSNotication to monitor a process e.g. iTunes. I want a notification when iTunes is "available", the process of iTunes is running. How to do that?
3
votes
2answers
2k 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, ...
2
votes
2answers
535 views
How do I acquire data from a NSNotification object?
I am trying to send a location update with the new location as a notification object. When I do, I receive a "EXC_BAD_ACCESS" error when I try to access the data from the notification. If I execute ...
1
vote
1answer
124 views
NSNotification called before view controller is initialised completely
Hi I have a viewcontroller in a tabview controller. I decided to use NSNotification to flag when views in the tabview controller need to update their data. Previously each had logic to tred to decided ...
0
votes
2answers
194 views
NSNotification only NSLog works
In my Class X I post a Notification like this:
[[NSNotificationCenter defaultCenter] addObserver:viewController
selector:@selector(doThis:)
...
0
votes
2answers
132 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 ...
