• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: How to deactivate an app
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to deactivate an app


  • Subject: Re: How to deactivate an app
  • From: "Gerriet M. Denkmann" <email@hidden>
  • Date: Wed, 01 Feb 2012 14:20:37 +0700

On 1 Feb 2012, at 04:43, Lee Ann Rucker wrote:

> I was afraid you were going to say Services :) When I'm using this both apps are under my control.
>
> Haven't tried this, but you could try checking which app is active in applicationWillBecomeActive: and restore that when you're done.

I tried:

- (void)applicationWillBecomeActive:(NSNotification *)aNotification
{
	(void)aNotification;

	NSRunningApplication *currentApplication = [ NSRunningApplication currentApplication ];
	NSString *bundleIdentifier = currentApplication.bundleIdentifier;
	NSLog(@"%s current: %@",__FUNCTION__, bundleIdentifier);

	NSWorkspace *sharedWorkspace = [ NSWorkspace sharedWorkspace ];
	NSArray *runningApplications = [ sharedWorkspace runningApplications ];
	for( NSRunningApplication *ru in runningApplications )
	{
		if ( ru.isActive )
		{
			NSString *bundleIdentifier = ru.bundleIdentifier;
			NSLog(@"%s active: %@",__FUNCTION__, bundleIdentifier);
		};
	};
}

But both the currentApplication and the active one is our app (NOT the previously active one).

Although the name of the notification is applicationWillBecomeActive it acts more like
applicationIsAlreadySomehowActiveAndWIllBecomeFullyActiveRealSoonNow.


Kind regards,

Gerriet.



_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: How to deactivate an app
      • From: Ken Thomases <email@hidden>
References: 
 >Re: How to deactivate an app (From: Lee Ann Rucker <email@hidden>)

  • Prev by Date: PDFView focus ring
  • Next by Date: Re: How to deactivate an app
  • Previous by thread: Re: How to deactivate an app
  • Next by thread: Re: How to deactivate an app
  • Index(es):
    • Date
    • Thread