-
Posts
347 -
Joined
-
Last visited
Everything posted by vinhthai222006
-
General gangstar new orleans ipa download Link
vinhthai222006 replied to GGGGGGGGGG's topic in App Store Apps Discussion
Thanks you -
Help/Support help me add sclalertview in theos?
vinhthai222006 replied to vinhthai222006's topic in Help & Support
Make clean package and error -
Help/Support help me add sclalertview in theos?
vinhthai222006 replied to vinhthai222006's topic in Help & Support
i have use guide in https://iosgods.com/topic/27214-how-to-do-sclalertview-in-a-theos-tweak-like-this/ makefile ARCHS = armv7 arm64 CFLAGS = -fobjc-arc # ARC is needed for SCLAlertView include $(THEOS)/makefiles/common.mk TWEAK_NAME = YOURTWEAKNAMEHERE YOURTWEAKNAMEHERE_FILES = Tweak.xm $(shell find $(THEOS)/vendor/include/SCL -name '*.m') YOURTWEAKNAMEHERE_FRAMEWORKS = UIKit MessageUI Social QuartzCore CoreGraphics Foundation AVFoundation Accelerate GLKit AudioToolbox YOURTWEAKNAMEHERE_LDFLAGS += -Wl,-segalign,4000 include $(THEOS_MAKE_PATH)/tweak.mk tweak.xm #import <SCL/SCLAlertView.h> // Imports the popup headers. %hook UnityAppController - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app. SCLAlertView *alert = [[SCLAlertView alloc] initWithNewWindow]; [alert showSuccess: @"Title here"// Success, Error, Notice, Warning, Info, Edit, Custom, Waiting subTitle: @"Subtitle here" closeButtonTitle: @"Close button" duration: 0.0f]; return %orig; } %end and i use SCLAlertView 1.0.3 download github but error: ==> Compiling /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m (armv7)… /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1642:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1644:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTitle = title; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1645:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1676:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1678:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTitle = title; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1679:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1686:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1688:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTarget = target; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1689:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /Users/osxvn/theos/vendor/include/SCL/SCLAlertView.m:1696:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ fatal error: too many err -
Help/Support help me add sclalertview in theos?
vinhthai222006 replied to vinhthai222006's topic in Help & Support
error: /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1708:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1710:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTitle = title; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1711:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1742:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1744:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTitle = title; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1745:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:9: error: '__weak' only applies to Objective-C object or block pointer types; type here is 'int' [-Werror,-Wignored-attributes] __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:23: error: a parameter list without types is only allowed in a function definition __weak typeof(self) weakSelf = self; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1752:28: error: expected ';' at end of declaration __weak typeof(self) weakSelf = self; ^ ; /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1754:13: error: use of undeclared identifier 'weakSelf' weakSelf.parameterTarget = target; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1755:20: error: use of undeclared identifier 'weakSelf' return weakSelf; ^ /Users/osxvn/theos/vendor/include/SCLAlertView/SCLAlertView.m:1762:16: error: type specifier missing, defaults to 'int' [-Werror,-Wimplicit-int] __weak typeof(self) weakSelf = self; ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] 20 errors generated. -
Help/Support help me add sclalertview in theos?
vinhthai222006 replied to vinhthai222006's topic in Help & Support
i have but not work error Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SCLAlertView", referenced from: objc-class-ref in Tweak.xm.cde924a7.o ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation) -
why you don't check inbox and don't help me ???
-
help me add sclalertview in theos?? i use : https://github.com/dogo/SCLAlertView error: ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(atomic_signal_fence.c.o)) was built for newer iOS version (6.0) than being linked (5.0) ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(atomic_thread_fence.c.o)) was built for newer iOS version (6.0) than being linked (5.0) ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(emutls.c.o)) was built for newer iOS version (6.0) than being linked (5.0) Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SCLAlertView", referenced from: objc-class-ref in Tweak.xm.cde924a7.o ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation) have help me fixxx !
-
Help/Support popup uialertview cool
vinhthai222006 replied to vinhthai222006's topic in Help & Support
@DiDA help me -
Help/Support popup uialertview cool
vinhthai222006 replied to vinhthai222006's topic in Help & Support
help me fix error build ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(atomic_signal_fence.c.o)) was built for newer iOS version (6.0) than being linked (5.0) ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(atomic_thread_fence.c.o)) was built for newer iOS version (6.0) than being linked (5.0) ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(emutls.c.o)) was built for newer iOS version (6.0) than being linked (5.0) Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SCLAlertView", referenced from: objc-class-ref in Tweak.xm.cde924a7.o ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation) -
Help/Support popup uialertview cool
vinhthai222006 replied to vinhthai222006's topic in Help & Support
thanks. all help me guide add in theos-jailed error: ld: warning: object file (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.ios.a(emutls.c.o)) was built for newer iOS version (6.0) than being linked (5.0) Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SCLAlertView", referenced from: objc-class-ref in Tweak.xm.7e592cb6.o ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation) -
@DiDA. you have send code popup uialertview you use.. i need add tweak.xm thanks
-
Tutorial How to install Cracked Apps without Appsync iOS 10.2!
vinhthai222006 replied to iHomer's topic in Tutorials
hope work -
Tool [Free - Full] iGameGuardian 7 for iOS 8/9/10
vinhthai222006 replied to Diversityy's topic in Tools
thanks. hope work ios 10 -
Tutorial [Tutorial] Basic game Property List hacking. (.plist)
vinhthai222006 replied to Luke's topic in Tutorials
working ios 10.x non jailbreak???? -
Save Game Fix iBackupbot Restore Error On iOS 10
vinhthai222006 replied to Tibbo's topic in Tutorials
thanks -
Thank you! Installed and hoping it works properly
-
Flex [ Flex ] Viber Paid Stickers For Free Latest Version
vinhthai222006 replied to MRX.GG's topic in DIY Cheats
thanks. hope work -
Grand Theft Auto Liberty City Stories 1.13
vinhthai222006 replied to NitroxicDemon's topic in Coding Center
thanks you