Jump to content

Use of undeclared identifier/Unknown type name 'UIAlertView'


Go to solution Solved by AnotherLurker,

7 posts in this topic

Recommended Posts

Posted (edited)

error: Use of undeclared identifier 'UIAlertView'

error: Unknown type name 'UIAlertView'
 
8jKLAfj.jpg
Putty in text

 

 

L33T-Pr0xY:/var/mobile root# cd fragger
L33T-Pr0xY:/var/mobile/fragger root# make package install
/bin/sh: tr: command not found
/bin/sh: tr: command not found
/bin/sh: tr: command not found
/var/mobile/fragger/theos/makefiles/targets/Darwin-arm/iphone.mk:43: Targeting i                                   OS 4.0 and higher is not supported with iphone-gcc. Forcing clang.
/var/mobile/fragger/theos/makefiles/targets/Darwin-arm/iphone.mk:53: Deploying t                                   o iOS 3.0 while building for 6.0 will generate armv7-only binaries.
/bin/sh: tr: command not found
/bin/sh: cut: command not found
/bin/sh: cut: command not found
/bin/sh: cut: command not found
Making all for tweak fragger...
/bin/sh: tr: command not found
/bin/sh: md5sum: command not found
/bin/sh: cut: command not found
/bin/sh: tr: command not found
/bin/sh: md5sum: command not found
/bin/sh: cut: command not found
/bin/sh: md5sum: command not found
/bin/sh: cut: command not found
 Preprocessing Tweak.xm...
 Compiling Tweak.xm...
Tweak.xm:6:829: error: unknown type name 'UIAlertView'
  ...SEL, UIAlertView *, NSInteger);
          ^
Tweak.xm:33:1: error: unknown type name 'UIAlertView'
UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Fragger HACK"
^
Tweak.xm:33:26: error: use of undeclared identifier 'UIAlertView'
UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Fragger HACK"
                         ^
Tweak.xm:55:111: error: unknown type name 'UIAlertView'
  ...self, SEL _cmd, UIAlertView * alertView, NSInteger buttonIndex) {
                     ^
Tweak.xm:67:5: error: use of undeclared identifier 'UIApplication'
                [[UIApplication sharedApplication] openURL:[NSURL URLWit...
                  ^
Tweak.xm:75:1228: error: unknown type name 'UIAlertView'
  ...= ':'; i += 1; memcpy(_typeEncoding + i, @encode(UIAlertView *), strlen(...
                                                      ^
Tweak.xm:75:1297: error: unknown type name 'UIAlertView'
  ...*), strlen(@encode(UIAlertView *))); i += strlen(@encode(UIAlertView *))...
                                                              ^
7 errors generated.
make[2]: *** [obj/Tweak.xm..o] Error 1
make[1]: *** [internal-library-all_] Error 2
make: *** [fragger.all.tweak.variables] Error 2
L33T-Pr0xY:/var/mobile/fragger root#

 

 

Makefile

include theos/makefiles/common.mk

TWEAK_NAME = fragger
fragger_FILES = Tweak.xm
fragger_FRAMEWORKS = UIKit

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
	install.exec "killall -9 SpringBoard"

Tweak.xm


//the hack//

%hook LevelLayer
-(int) grenades {
return 10000;
}


-(void) setGrenades:(int)fp8 {
fp8=10000;
%orig(fp8);
}
%end

%hook Configuration
-(void) setUnlimitedGrenades: (BOOL)fp8 {
fp8=true;
%orig(fp8);
}
%end



%hook AppDelegate
-(void)applicationDidBecomeActive:(id)argument {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"This is the Title" message:@"This is the Message" delegate:nil cancelButtonTitle:@"This is the Button Text" otherButtonTitles:nil];
[alert show];
[alert release];
}
%end
Updated by L33TPr0xY
Posted

add this to the top of your makefile

 

ARCHS = armv7 armv64

 

no need :mellow:, this won't fix the error

Posted

no need :mellow:, this won't fix the error

It should fix the clang and armv7 binary issue he has. Also he needs to add the following code to his makefile

ARCHS = armv7 arm64
TARGET = iphone:clang:SDKNUMBERHERE
Alternative:

export ARCHS = armv7 arm64
export TARGET = iphone:clang:SDKNUMBERHERE
Posted

It should fix the clang and armv7 binary issue he has. Also he needs to add the following code to his makefile

ARCHS = armv7 arm64
TARGET = iphone:clang:SDKNUMBERHERE
Alternative:

export ARCHS = armv7 arm64
export TARGET = iphone:clang:SDKNUMBERHERE

 

no lol, you didn't read the error did you? The error said he missing UIKit Library

 

Also @ you should install BigBoss Recommended Tool on Cydia to fix bin/sh: xx command not found

Posted (edited)

no lol, you didn't read the error did you? The error said he missing UIKit LibraryAlso @ you should install BigBoss Recommended Tool on Cydia to fix bin/sh: xx command not found

I read the error. I'm giving him the solution to the error on lines 8-11 in the photo. One more thing. DiDA said that if you @mention a member, they don't get notified :3 quote his post instead :thumbsup: Updated by KingRalph

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