[go: up one dir, main page]

Skip to content

Baw-Appie/libAPAppView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

libAPAppView

Get Application View on SpringBoard.

How to use

To use libAPAppView, copy libAPAppView.h to $THEOS/include and libAPAppView.dylib to $THEOS/lib. Then you can add XXX_LIBRARIES = APAppView to your Makefile and #import <libAPAppView.h> into any source files you want to use it in. Then add Depends: com.rpgfarm.libapappview to your control file.

APAppView Interface

@interface APAppView
-(UIView *)viewForBundleID:(NSString *)bundleID;
-(void)stopAppView;
@end

[Example] Get stock "Calculator" application view

APAppView *appView = [[APAppView alloc] init];
[yourView addSubview:[appView viewForBundleID:@"com.apple.calculator"]];

--- when viewwilldisappear ---

[appView stopAppView];

About

Get Application View on SpringBoard

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published