
LifeElevated
Senior Member-
Posts
766 -
Joined
-
Last visited
Everything posted by LifeElevated
-
Tweak Hack I am T-Pain 2.0 Unlock All[All Versions]
LifeElevated replied to Naeemjr's topic in Free Jailbreak Cheats
lol nice -
Tweak Hack 9gag Disable Jailbreak Check[All Versions]
LifeElevated replied to Naeemjr's topic in Free Jailbreak Cheats
good -
DIY Hack Injustice: God Among Us & Mortal Kombat X (All Version) 100% work
LifeElevated replied to Hack IOS's topic in DIY Cheats
nice -
DIY Hack Games hacked by LocalIAPStore work 100%
LifeElevated replied to Paulsat's topic in DIY Cheats
try and keep adding more as you find more people will appreciate it alot! -
Save Game Case Clicker 1.7.3 Hacked Save File
LifeElevated replied to MrExeRio's topic in Save Game Cheats
nice -
Hack League of Stickman v1.3.0 +3 [Infinite Gold + Gems]
LifeElevated replied to Zahir 's topic in Free Jailbreak Cheats
nice -
Tutorial How to make and host a website for FREE (Feb 2017)
LifeElevated replied to sav's topic in Tutorials
Good post -
Hey guys this video helped me out alot. I can do a typed out version if you want ~MightySquad Credits to: Billy Ellis
-
Tool [RELEASE] An improved version of Theos Jailed for iOS 10
LifeElevated replied to ___Aaki___'s topic in Tools
lol -
Tool [WINDOWS ONLY]Wifi Password Cracker [WPA, and WPA2]
LifeElevated replied to ___Aaki___'s topic in Tools
nice -
You could maybe sell it right?
-
You can visit this website : http://j.25pp.com/ota_tutorial.html or install it on http://pangu.io and use Cydia Impactor.
-
Help/Support iBackupBot quits automatically
LifeElevated replied to TheArmKing's topic in Help & Support
Clear all the data from the Application on your computer (cache, ect.) then maybe restart your iDevice and then try. -
Make sure your Jailbreak is activated, then using safari download enabler open the deb in Filza/iFile and install then edit the settings in settings.
-
Just install a tweaked version of apps. Using Cydia Impactor.
-
They can visit the Xbox website and redeem a code. And why not reply a giveaway is a giveaway
-
Introduction HEY WHO CAN POINT ME IN THE RIGHT DIRECTION :D
LifeElevated replied to Knoeva's topic in Member Introductions
Welcome to -
Welcome to
-
Basic's of Objective-C (for beginner Flex Hacks)
LifeElevated replied to LifeElevated's topic in Coding Center
ok -
Basic's of Objective-C (for beginner Flex Hacks)
LifeElevated replied to LifeElevated's topic in Coding Center
Oh my bad thanks man -
Basic's of Objective-C (for beginner Flex Hacks)
LifeElevated replied to LifeElevated's topic in Coding Center
Not understanding what your saying, seems you quoted the code from above. -
Basic's of Objective-C (for beginner Flex Hacks)
LifeElevated replied to LifeElevated's topic in Coding Center
ok, im so tired right now -
Basic's of Objective-C Object Creation Object creation basically explains itself in it's name, it creates 'objects' that you can use in your app ( or in our case hack/edit ) A template would be as followed: MyClass *objectName = [[MyClass alloc]init] ; The "objectName" as seen in the example code above is the name of the code, and the MyClass is the name of your project and your basically creating a stem from it to thus create something amazing (or hack/edit in our case) Methods-A method is a code block that contains a series of statements Method is declared in Objective C as follows − - (returnType)methodName:(typeName)variable1 argument1:(typeName)variable2; An example is shown: -(void)calculateAreaForRectangleWithLength CGfloat)length andBreadth CGfloat)breadth; Instance Methods-When no static modifier is present, the method is said to be an instance method Instance methods can be accessed only after creating an object for the class. Memory is allocated to the instance variables. An example instance method is shown below. -(void)simpleInstanceMethod; It can be accessed after creating an object for the class as follows − MyClass *objectName = [[MyClass alloc]init] ; [objectName simpleInstanceMethod]; Important Data Types in Objective C Data Type 1 NSString Used for representing a string. 2 CGfloat Used for representing a floating point value (normal float is also allowed but it's better to use CGfloat). 3 NSInteger Used for representing integer. 4 BOOL Used for representing Boolean (YES or NO are BOOL types allowed). You can further your knowledge with Objective-C and start making flex hacks (and maybe converting to .deb) here: https://iosgods.com/topic/904-tutorialvideo-hack-games-with-flex-and-convert-it-to-deb-tweak/ ~MightySquad