Jump to content

[ERROR] use of undeclared identifier "alertshow"


Go to solution Solved by Vegito,

11 posts in this topic

Recommended Posts

Posted (edited)

Hi guys, I'm having a problem with compiling my tweak with theos, it gives me this error when running make package

 

 

4Hk6Qpm.jpg

 

 

This is the code I'm using:

 

#import <UIKit/UIKit.h>

%hook AppDelegate
-(BOOL) application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {
UIAlertView *alert= [[UIAlertView alloc] initWithTitle:@"Test" 
                                                message:@"Hack made by DeathScripts for iOSGods.com" 
                                               delegate:nil 
                                      cancelButtonTitle:@"Subscribe to my YouTube channel" 
                                      otherButtonTitles:nil];
[alertshow];
[alertrelease];
%orig;
}
%end

 

And this is my makefile:

 

ARCHS = armv7 arm64
TARGET = iphone:clang:latest:latest
#CFLAGS = -fobjc-arc
#THEOS_PACKAGE_DIR_NAME = debs

include theos/makefiles/common.mk

TWEAK_NAME = Hack
Hack_FILES = Tweak.xm
Hack_FRAMEWORKS = UIKit
Hack_LDFLAGS += -Wl,-segalign,4000

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
	install.exec "killall -9 suleyman.keys"
include $(THEOS_MAKE_PATH)/aggregate.mk

 

 

Any help is greatly appreciated :)

Updated by DeathScripts
  • Solution
Posted (edited)

Hi guys, I'm having a problem with compiling my tweak with theos, it gives me this error when running make package

 

 

4Hk6Qpm.jpg

 

 

This is the code I'm using:

 

 

#import <UIKit/UIKit.h>

%hook AppDelegate
-(BOOL) application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {
UIAlertView *alert= [[UIAlertView alloc] initWithTitle:@"Test" 
                                                message:@"Hack made by DeathScripts for iOSGods.com" 
                                               delegate:nil 
                                      cancelButtonTitle:@"Subscribe to my YouTube channel" 
                                      otherButtonTitles:nil];
[alert show];
[alert release];
return %orig;
}
%end

changes i made-->

 

 

[alert show];

[alert release];

return %orig;

 

 

Edited by Vegito: Hope this helps

and please do mark this answer as solved if it solves your problem.

Updated by Vegito
Posted

 

Hi guys, I'm having a problem with compiling my tweak with theos, it gives me this error when running make package

 

4Hk6Qpm.jpg

 

This is the code I'm using:

 

 

 

#import <UIKit/UIKit.h>

%hook AppDelegate
-(BOOL) application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {
UIAlertView *alert= [[UIAlertView alloc] initWithTitle:@"Test" 
                                                message:@"Hack made by DeathScripts for iOSGods.com" 
                                               delegate:nil 
                                      cancelButtonTitle:@"Subscribe to my YouTube channel" 
                                      otherButtonTitles:nil];
[alert show];
[alert release];
return %orig;
}
%end
changes i made-->

 

 

[alert show];

[alert release];

return %orig;

 

 

Edited by Vegito: Hope this helps

and please do mark this answer as solved if it solves your problem.

Now it gives me this error: IyigDtO.jpg
Posted

Now it gives me this error: IyigDtO.jpg

 As i can see you're working on modifying this app called InstaLikes which gives you unlimited login coins. I will help you out.PM me

Posted

The 2nd error is because of return orig;

Posted

No, he is not return anything "control reaches end of non-void function"

 

What return type is it?

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