1
vote
4answers
599 views
NSNotificationCenter selector won’t work with its NSNotification
I'm working on a Cocoa project with some C in it (I know, objc contains C...) and am trying to understand NSNotificationCenters. Here's the situation:
I have a struct declared as typedef struct …
1
vote
3answers
170 views
How to find out what UITextField caused a UIKeyboardWillShowNotification?
I am trying to use a customized keyboard in my application, but I am hitting problems when trying to restrict it to one particular UITextField.
I based my code on this Xcode project (originally found …
1
vote
1answer
40 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 …
0
votes
1answer
23 views
iPhone SDK: handling keybaord appearance
Hi,
I need to move UI elements of my view controller when keyboard appears. I do this by registering for the keyboard notifications in my app delegate:
[[NSNotificationCenter defaultCenter] …
1
vote
1answer
42 views
Issue with NSWorkspace and NSNotificationCentre’s block-based API in Snow Leopard
I've been having some trouble with Snow Leopard's new block-based API for observing notifications from NSWorkspace's NSNotificationCenter.
If I register for notifications using the traditional …
1
vote
3answers
171 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 …
0
votes
2answers
93 views
How to add a notification for pop view controller in iphone application?
I have seen the sample application of iPhone MP-movie player - controller.
They have added a notification on the sample code.
// Register to receive a notification that the movie is now in memory …
1
vote
3answers
118 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 …
2
votes
2answers
45 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] …
3
votes
2answers
367 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 …
0
votes
0answers
197 views
UIViewController remove from superview after receiving nsnotification
Hello,
i'm trying to remove a UIViewController from the superview after receiving a notification but it doesn't work.
in my appDelegate i do something like this:
- …
1
vote
4answers
223 views
Registering a Notification in iPhone SDK 3.0
Hi,
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
0
votes
1answer
93 views
notification for touches ended
Hi,
I am a little newbie regarding notifications on the iPhone.
What I am trying to do is this: I have an object using a class based on UIImageView. This class has its own implementations of …
0
votes
1answer
79 views
NSFileHandle readInBackgroundAndNotify does not work
Hi I'm using NSFileHandle's readInBackgroundAndNotify method to get notifications when a log file has been updated.
I have the following code:
- (void)startReading
{
NSString *logPath = …
1
vote
2answers
136 views
How to block until certain notification is posted in Cocoa?
What's the best way to sleep/wait until certain notification is posted?
I've got class with asynchronous API that gets data from NSNotification (notification comes from Cocoa, I can't avoid it) and I …
