libAPAppView

  • 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 add XXX_LIBRARIES = APAppView to your tweak's Makefile and #import <libAPAppView.h> into source code. Then add Depends: com.rpgfarm.libapappview to 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];
    

    View on GitHub

Whats New?

More Information

  • DeveloperBaw Appie

  • Version1.0.1

  • Released12/1/2022

  • PriceFree

Merona Repository