vote up 0 vote down star

How would I use NSRunningApplication? I have something opposite of that which is launching an app:

[[NSWorkspace sharedWorkspace] launchApplication:appName];

but I want to close one. I get an error when I debug the code for NSRunningApp which is this:

NSRunningApplication *selectedApp = appName;
[selectedApp terminate];

Is there something wrong? if there is please point it out and how to fix it.

flag

30% accept rate
This is actually a duplicate of this other question (same problem: can't send message to instance of wrong class): stackoverflow.com/questions/930929/… – Peter Hosey Sep 26 at 15:48
@ Peter: only the solution is a duplicate, the question is unique. – gs Sep 27 at 13:18
Ok guys can we focus on the question... No one is responding to me... Look at my latest post below at GS's response!!!! – Kevin Sep 28 at 18:05

2 Answers

vote up 3 vote down check

You assign the variable selectedApp a NSString. Strings don't have the - (void)terminate method and therefore it fails. You have to get a NSRunningApplication instance pointing to the application.

NSWorkspace *sharedWorkspace = [NSWorkspace sharedWorkspace];
NSString *appPath = [sharedWorkspace fullPathForApplication:appName];
NSString *identifier = [[NSBundle bundleWithPath:appPath] bundleIdentifier];
NSArray *selectedApps =
       [NSRunningApplication runningApplicationsWithBundleIdentifier:identifier];
// quit all
[selectedApps makeObjectsPerformSelector:@selector(terminate)];
link|flag
ok, sorry if I don't get it... Like my code that opens an app from just the name, how would something similar like that work? just the terminating. Cuz i don't want to add the path to the application that needs to be closed.. – Kevin Sep 26 at 15:13
my new example should be fully functional – gs Sep 26 at 16:46
ok i get this erro that NSRunningApplication may not respond to +runningApplicationWithBundleIdentifier – Kevin Sep 27 at 12:44
fixed it, I should have paid more attention to the api. – gs Sep 27 at 13:13
Ok, so I don't get any errors but when i type in the name of the app such as safari, in my textbox which is (appNAme) and press enter (to quit) it just quits my program, instead of safari. – Kevin Sep 27 at 20:45
show 1 more comment
vote up 5 vote down

What does appName refer to? If it literally refers to an NSString then that will not work.

Since NSRunningApplication is a class, you have to create an instance to send it an instance method as you would with any other class.

There are three class methods (see the docs) you can use to return an NSRunningApplication instance:

+ runningApplicationWithProcessIdentifier:
+ runningApplicationsWithBundleIdentifier:
+ currentApplication

Unless you want an NSRunningApplication instance based on the current application you are likely to find the first two class methods most useful.

You can then send the terminate message to the NSRunningApplication instance, which will attempt to quit the application that it has been configured for.

link|flag
appname is an NSSTring.. – Kevin Sep 26 at 15:08
Yes, that was what I was saying – you need to create an NSRunningApplication instance using one of the above methods. – Perspx Sep 26 at 15:20
ok i have this: NSString *identifier = [[NSBundle bundleWithPath:appName] bundleIdentifier]; NSRunningApplication *selectedApp = [NSRunningApplication runningApplicationWithBundleIdentifier:identifier]; [selectedApp terminate]; dis still doesn't work,... – Kevin Sep 26 at 16:49
Is appName a full path? You have to pass a full path to bundleWithPath: for it to return an NSBundle instance which you can then call bundleIdentifier on. If the path isn't full (or isn't a valid bundle) then it will return nil. – Perspx Sep 26 at 21:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.