Jump to content

pop-up automatically in the Preference Bundle my Tweak?


Go to solution Solved by AnotherLurker,

10 posts in this topic

Recommended Posts

Posted

You wanna know how to add a UIalert in the preference bundle?

 

I already know when the button is clicked, will pop up alerts, but what I want, when I first entered my bundle preference, immediately pop up. such preference bundlenya mario run in the setting.

Posted

I already know when the button is clicked, will pop up alerts, but what I want, when I first entered my bundle preference, immediately pop up. such preference bundlenya mario run in the setting.

This are all some different types of popups you can use.

 

https://iosgods.com/topic/13988-varieties-of-uialertview-types-to-use-in-your-tweaks-patchers/?hl=%2Buialert 

Posted

In your PreferenceBundle.m file, you can add an implementation for the -viewDidLoad method

For example:

- (void)viewDidLoad {
    [super viewDidLoad];

    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title"
                                                        message:@"Message"
                                                       delegate:nil
                                              cancelButtonTitle:@"Ok"
                                              otherButtonTitles:nil];
    [alertView show];
}
Posted

 

In your PreferenceBundle.m file, you can add an implementation for the -viewDidLoad method

For example:

- (void)viewDidLoad {
    [super viewDidLoad];

    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title"
                                                        message:@"Message"
                                                       delegate:nil
                                              cancelButtonTitle:@"Ok"
                                              otherButtonTitles:nil];
    [alertView show];
}

 

Thanks.. Worked!!!

Posted (edited)

 

In your PreferenceBundle.m file, you can add an implementation for the -viewDidLoad method

For example:

- (void)viewDidLoad {
    [super viewDidLoad];

    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title"
                                                        message:@"Message"
                                                       delegate:nil
                                              cancelButtonTitle:@"Ok"
                                              otherButtonTitles:nil];
    [alertView show];
}

 

i have error like this

 

 

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/usr/include/objc/NSObject.h:36:1: note:
      'retain' has been explicitly marked unavailable here
- (instancetype)retain OBJC_ARC_UNAVAILABLE;
^
FasterCharging.mm:10:83: error: ARC forbids explicit message send of 'retain'
  ...= [[self loadSpecifiersFromPlistName:@"FasterCharging" target:self] reta...
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
2 errors generated.

My mm.

 

 

ARCHS = armv7 arm64
CFLAGS = -Wno-deprecated -Wno-deprecated-declarations
include $(THEOS)/makefiles/common.mk

BUNDLE_NAME = FasterCharging
FasterCharging_FILES = FasterCharging.mm $(shell find $(THEOS)/include/SCLAlertView -name '*.m')
FasterCharging_INSTALL_PATH = /Library/PreferenceBundles
FasterCharging_FRAMEWORKS = UIKit
FasterCharging_PRIVATE_FRAMEWORKS = Preferences
FasterCharging_CFLAGS = -fobjc-arc

include $(THEOS_MAKE_PATH)/bundle.mk

internal-stage::
	$(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END)
	$(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/FasterCharging.plist$(ECHO_END)

what can i do?

Updated by pxcex
Posted

Work

 

[[self loadSpecifiersFromPlistName:@"FasterCharging" target:self] retain];
to

[self loadSpecifiersFromPlistName:@"FasterCharging" target:self];

Work  Perfectly  

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines