Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
SBApplication: Difference between revisions - iPhone Development Wiki

SBApplication: Difference between revisions

From iPhone Development Wiki
(Update the header to a header for a newer version of iOS)
(A lot of the information on this page was super old and outdated or just incorrect. I brought most of the stuff up to date, and i'll add a lot more to this page over the next few days.)
Line 1: Line 1:
[[SBApplication]] is a class representing the application screen on the {{applink|SpringBoard}}. SBApplication is a subclass of [[SBDisplay]]. See [[SBDisplay]] for more info.
[[SBApplication]] is a class that represents individual applications. It contains anything you could possibly want to know about the application it represents.  


== Retrieving an instance of SBApplication ==
== Fetching SBApplications ==
To retrieve a known instance, you must go through [[SBApplicationController]]. For example, if the display ID of the application is known, you can use:
[[SBApplicationController]] holds all known instances of SBApplication. There will usually just be a single instance per currently-running application. An instance can be retrieved using the wanted-application's bundle identifier.
<source lang="objc">
<source lang="objc">
//iOS 9+
SBApplication* app = [[SBApplicationController sharedInstance] applicationWithDisplayIdentifier:@"com.yourcompany.appname"];
SBApplication* app = [[SBApplicationController sharedInstance] applicationWithDisplayIdentifier:@"com.yourcompany.appname"];
// iOS 8
 
// iOS 8-
SBApplication* app = [[SBApplicationController sharedInstance] applicationWithBundleIdentifier:@"com.yourcompany.appname"];
SBApplication* app = [[SBApplicationController sharedInstance] applicationWithBundleIdentifier:@"com.yourcompany.appname"];
</source>
</source>


== Get all active applications ==
== Fetching Frontmost App's SBApplication Instance ==
{{function signature
This method will return the frontmost application's SBApplication instance. If no app is currently running <code>nil</code> will be returned. Internally it queries [[SBSceneManagerCoordinator]] to retrieve the application (if any) that is fulfilling the primary layout role.
|signature=-(NSArray*)_accessibilityRunningApplications;
<source lang="objc">
|firmware=3.0 –
[[SpringBoard sharedApplication] _accessibilityFrontMostApplication];
}}
</source>
{{function signature
|signature=-(SBApplication*)_accessibilityFrontMostApplication;
|firmware=3.2 –
}}


Getting active applications traditionally need to be done via the static function at <tt>0xeadc</tt>, or evaluate through the result of {{ObjcCall|SBApplicationController|allApplications}} and check if the <tt>pid</tt> is valid. Fortunately, starting from 3.0, the SpringBoard class provides a method {{ObjcCall|SpringBoard|_accessibilityRunningApplications}} which directly calls <tt>0xeadc</tt>. Therefore, you can get the array of active applications from this.
== Fetching All Instances ==
[[SBApplicationController]] can provide an array containing all known instances of SBApplication.  
<source lang="objc">
[[SBApplicationController sharedInstanceIfExists] runningApplications];
</source>


Starting from 3.2 one can also use {{ObjcCall|SpringBoard|_accessibilityFrontMostApplication}} to get the front most application. If you know the app you can check if [[app process] isFrontmost].
== Fetch "Now Playing" App ==
<source lang="objc">
SBApplication *nowPlayingApp = [[SBMediaController sharedInstance] nowPlayingApplication];
</source>


== Launching an SBApplication ==
== Launching an SBApplication ==
To launch an SBApplication you can use [[SBUIController]]:
[[SBUIController]] can be used to launch an SBApplication.
<source lang="objc">
<source lang="objc">
[[SBUIController sharedInstance] activateApplicationAnimated:app];
SBApplication *appToLaunch = [[SBApplicationController sharedInstanceIfExists] runningApplications][0];
[[SBUIController sharedInstanceIfExists] activateApplication:appToLaunch];
</source>
</source>


To launch an app without the animation simply apply the correct activation setting before calling that method.
To disable launch animations simply apply the correct activation setting before calling <code>-activateApplication:</code>.
<source lang="objc">
<source lang="objc">
[application setFlag:1 forActivationSetting:1]; // flag 1 = ON, Activation Setting 1 = @"noAnimate"
[appToLaunch setFlag:1 forActivationSetting:1]; // flag 1 = ON, Activation Setting 1 = @"noAnimate"
</source>
</source>


'''Notes:'''
'''Notes:'''
* This method will not respect parental control. However, you can look up the list of restricted apps using {{ObjcCall|SpringBoard|parentalControlsDisabledApplications}}.
* This method will not respect parental control. However, you can determine if an SBApplication is restricted (parental locked) by using [[SBApplicationRestrictionController]], which [[SBApplicationController]] holds an instance of.  
* This method is not available on iOS 9, use <code>[[UIApplication#Launching_an_application|UIApplication]]</code> or <code>[[SBUIController sharedInstance] activateApplication:app];</code> instead.
<source lang="objc">
SBApplication *appToCheck = [[SBApplicationController sharedInstanceIfExists] runningApplications][0];
BOOL appIsRestricted = [[[SBApplicationController sharedInstanceIfExists] restrictionController] isApplicationIdentifierRestricted:[appToCheck bundleIdentifier]];
</source>
 
'''Other Known Activation Flags'''
 
{| class="activationflags"
|-
! Flag ||    Setting
|-
| 1      ||    Launch without animations. 
|-
| 8      ||    Force launch animation to use app's context view instead of a snapshot.     
|-
| 11      ||    Delay launch animation.
|-
| 43      ||    Set the app as the "Now Playing" application.     
|}
 
== Useful Methods ==
These are a few of the useful items in SBApplication.
<source lang="objc">
 
//the apps bundle id
- (NSString *)bundleIdentifier;
 
//is it SpringBoard's instance
- (BOOL)isSpringBoard;
 
//app location info
- (NSString *)path;
- (NSString *)dataContainerPath;
- (NSString *)bundleContainerPath;
- (NSString *)bundleVersion;
- (NSString *)sandboxPath; 
 
//general info
- (BOOL)isSetup;
- (BOOL)isMobilePhone;
- (BOOL)isFaceTime;
- (BOOL)behavesLikePhone;
- (BOOL)isWebApplication;
- (BOOL)isWatchApplication;
- (BOOL)isNowPlayingApplication;
- (BOOL)isNowRecordingApplication;
- (BOOL)showsProgress;
- (BOOL)isRecordingAudio;
- (BOOL)isRunning;
- (BOOL)hasStartedLaunching;
 
//the string displayed under the icon
- (NSString *)displayName;
 
//has it been launched at some point in SpringBoard's life
- (BOOL)hasBeenFrontmost;
 
//badge number
- (id)badgeNumberOrString;
 
//returns the app's FBScene instance, useful for doing context host view stuff
- (FBScene *)mainScene;
 
</source>


== Application Info.plist ==
== Application Info.plist ==
Line 67: Line 136:


* _UILaunchAlwaysFullScreen<ref>http://pastebin.com/XmRqevnD</ref>
* _UILaunchAlwaysFullScreen<ref>http://pastebin.com/XmRqevnD</ref>
== Now Playing App Info ==
<source lang="objc">
SBApplication *nowPlayingApp = [SBMediaController nowPlayingApplication];
</source>
You can use many of SBApplication's useful methods (like -(id)displayName and -(id)bundleIdentifier) to retrieve app Info of the nowPlaying app.


== References ==
== References ==

Revision as of 08:44, 28 October 2016

SBApplication is a class that represents individual applications. It contains anything you could possibly want to know about the application it represents.

Fetching SBApplications

SBApplicationController holds all known instances of SBApplication. There will usually just be a single instance per currently-running application. An instance can be retrieved using the wanted-application's bundle identifier.

//iOS 9+
SBApplication* app = [[SBApplicationController sharedInstance] applicationWithDisplayIdentifier:@"com.yourcompany.appname"];

// iOS 8-
SBApplication* app = [[SBApplicationController sharedInstance] applicationWithBundleIdentifier:@"com.yourcompany.appname"];

Fetching Frontmost App's SBApplication Instance

This method will return the frontmost application's SBApplication instance. If no app is currently running nil will be returned. Internally it queries SBSceneManagerCoordinator to retrieve the application (if any) that is fulfilling the primary layout role.

[[SpringBoard sharedApplication] _accessibilityFrontMostApplication];

Fetching All Instances

SBApplicationController can provide an array containing all known instances of SBApplication.

[[SBApplicationController sharedInstanceIfExists] runningApplications];

Fetch "Now Playing" App

SBApplication *nowPlayingApp = [[SBMediaController sharedInstance] nowPlayingApplication];

Launching an SBApplication

SBUIController can be used to launch an SBApplication.

SBApplication *appToLaunch = [[SBApplicationController sharedInstanceIfExists] runningApplications][0];
[[SBUIController sharedInstanceIfExists] activateApplication:appToLaunch];

To disable launch animations simply apply the correct activation setting before calling -activateApplication:.

[appToLaunch setFlag:1 forActivationSetting:1]; // flag 1 = ON, Activation Setting 1 = @"noAnimate"

Notes:

SBApplication *appToCheck = [[SBApplicationController sharedInstanceIfExists] runningApplications][0];
BOOL appIsRestricted = [[[SBApplicationController sharedInstanceIfExists] restrictionController] isApplicationIdentifierRestricted:[appToCheck bundleIdentifier]];

Other Known Activation Flags

Flag Setting
1 Launch without animations.
8 Force launch animation to use app's context view instead of a snapshot.
11 Delay launch animation.
43 Set the app as the "Now Playing" application.

Useful Methods

These are a few of the useful items in SBApplication.

//the apps bundle id
- (NSString *)bundleIdentifier; 

//is it SpringBoard's instance
- (BOOL)isSpringBoard; 

//app location info
- (NSString *)path;
- (NSString *)dataContainerPath;
- (NSString *)bundleContainerPath;
- (NSString *)bundleVersion;
- (NSString *)sandboxPath;  

//general info
- (BOOL)isSetup;
- (BOOL)isMobilePhone;
- (BOOL)isFaceTime;
- (BOOL)behavesLikePhone;
- (BOOL)isWebApplication;
- (BOOL)isWatchApplication;
- (BOOL)isNowPlayingApplication;
- (BOOL)isNowRecordingApplication;
- (BOOL)showsProgress;
- (BOOL)isRecordingAudio;
- (BOOL)isRunning;
- (BOOL)hasStartedLaunching;

//the string displayed under the icon
- (NSString *)displayName;

//has it been launched at some point in SpringBoard's life
- (BOOL)hasBeenFrontmost;

//badge number
- (id)badgeNumberOrString;

//returns the app's FBScene instance, useful for doing context host view stuff
- (FBScene *)mainScene;

Application Info.plist

SpringBoard will recognize the following Info.plist keys:

Starting from 3.2 these documented keys are also recognized:

  • ProductType, UIDeviceFamily, DeviceFamily[6]
  • UIAppFonts
  • UIFileSharingEnabled
  • UISupportedInterfaceOrientations

As of iOS 8, the following undocumented key is also recognized:

  • _UILaunchAlwaysFullScreen[7]

References