Giter Club home page Giter Club logo

autoalerts's Introduction

AutoAlerts

Automate alert actions on iOS.

Inspired by: http://cydia.saurik.com/package/org.thebigboss.automa/

Using Core Data in a tweak

  1. Create your model with Xcode like you normally would in an app (yourmodel.xcdatamodeld).
  2. Use Xcode's managed object model compiler momc on your model.
    /Applications/Xcode.app/Contents/Developer/usr/bin/momc --sdkroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.1.sdk --iphoneos-deployment-target 10.0 /path/to/yourmodel.xcdatamodeld /path/to/some/folder/yourmodel.momd
    
    Specify the sdk (preferably the latest) for --sdkroot and your minimum deployment target for --iphoneos-deployment-target.
  3. Copy yourmodel.momd to your Resources folder in your tweak (or somewhere else, just make sure it gets copied somewhere so you can access it on device).
  4. Create a NSManagedObjectModel.
    NSURL *url = [NSURL fileURLWithPath:@"/path/to/yourmodel.momd"];
    
    NSManagedObjectModel *model = [[[NSManagedObjectModel alloc] initWithContentsOfURL:url] autorelease];
  5. Create a store description and the persistent container.
    NSURL *storeURL = [NSURL fileURLWithPath:@"path/to/some/directory/yourmodel.sqlite"];
    	
    NSPersistentStoreDescription *prop = [[[NSPersistentStoreDescription alloc] initWithURL:storeURL] autorelease];
    
    self.container = [[[NSPersistentContainer alloc] initWithName:@"yourmodel" managedObjectModel:model] autorelease];
    self.container.persistentStoreDescriptions = @[prop];
  6. Congrats! You can now complete the creation of the Core Data stack with loadPersistentStoresWithCompletionHandler: and create objects from your entities and save them. See AACoreDataStack.m for more details.

autoalerts's People

Contributors

shiftcmdk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

autoalerts's Issues

Compatibility with 2 other alert types

Love the tweak, it's incredibly useful.

Would it be possible to add ActionSheet compatibility and TXDAlertViewControllers (used by apps like Wetherspoons and CUSU UK to confirm your location, using a preview of your location).

If you'd like, I'd be happy to add a bounty.

McDonalds App

This tweak works beautifully for so many apps that are trying to force us to update to iOS 15. The only one that it doesn't seem to be able to bypass is the McDonald's app. If you could fix this, I would be eternally grateful!!

Options unreadable in dark mode

Iโ€™m using an iPhone XR on iOS 13.3 with unc0ver 4.2.1 and AutoAlerts 1.0.1. Seems like the options are mostly unreadable when using dark mode:

50BDCC2D-28DC-4F4E-99FE-9B330BA055CA

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.