Jump to content

Rook

Administrator
  • Posts

    66,563
  • Joined

  • Last visited

Everything posted by Rook

  1. The Chinese GameMaster tool? This is so gonna get patched
  2. Hey Friendly person! It's nice to have you a part of this community! I hope you like it here! if you don't, we'll kill you with kindness.
  3. Become one of the world's earliest Swift developers with this introductory course on Apple’s new programming language. Initial Setup and Swift Basics Operators, Strings, Characters, and Collection Types Evolving from Objective C Control Flow A Modern Language Evolved from Objective C Swift is a multi-paradigm programming language developed by Apple for use with iOS and OS X. Designed to replace Objective C, work began on Swift in 2010 and the first mobile app was debuted in June 2014 at the Worldwide Developers Conference. Despite its goal of replacing Objective C, Swift is capable of working alongside the more dated Objective C language while using the Cocoa and Cocoa Touch frameworks. Swift is built with the LLVM compiler included in Xcode 6 beta, and uses the Objective-C runtime, allowing Objective-C, Objective-C++ and Swift code to run within a single program. During it’s debut, Swift was described as “Objective C without the C” by Apple’s VP of Software Engineering Craig Federighi. Contents and Overview Through 95+ video lectures and 4 hours of content, you will be lead through setting up Swift locally, the basics of the language, how it compares to other common languages (including Objective C), and how to get started on new projects. The course is designed to provide a comprehensive introduction to Swift, so that you can begin experimenting right away. Upon completion, you will understand the foundations of Swift code and will be able to develop custom applications. You will also get experience working with Xcode's new .playground file. By enrolling in this course you will be months ahead of other developers attempting learn the new Swift programming language by navigating Apple's 500-page instructional document. Course material is regularly refreshed to include all of the newest updates and information, and since you’re granted lifetime access upon registering, you can rely on this course to keep your Swift skills on the cutting edge. Category: Development / Mobile Apps What are the requirements?Developer access to Xcode 6 beta A Mac computer that can run Xcode 6 Enrolled in a paid developer program (iOS or Mac is fine) What am I going to get from this course?Over 95 lectures and 5 hours of content! Video walkthroughs showing you how to use Swift Work with Xcode's new .playground file What is the target audience?Objective-C developers wanting to learn Swift New programmers wanting to learn Swift https://www.udemy.com/swift-learn-apples-new-programming-language-by-examples/ Download Mediafire: [Hidden Content] Support the author if it helped you out in any way.
  4. Darude - Sandstorm
  5. Hello! In this tutorial I will be showing you how to add a Text Cell with a Switch where the user can choose the amount of currency he/she desires. I will be using the app "Pou" as an example. Alright, let's begin! 1. Start a new Patcher. login as: root [email protected]'s password: iOSGods-iPhone:~ root# /var/theos/bin/nic.pl NIC 2.0 - New Instance Creator ------------------------------ [1.] iphone/application [2.] iphone/library [3.] iphone/preference_bundle [4.] iphone/tool [5.] iphone/tweak Choose a Template (required): 5 Project Name (required): pouhack Package Name [com.yourcompany.pouhack]: com.iosgods.pouhack Author/Maintainer Name [System Administrator]: DiDA [iphone/tweak] MobileSubstrate Bundle filter [com.apple.springboard]: me.pou.app [iphone/tweak] List of applications to terminate upon installation (space-separated, '-' for none) [SpringBoard]: - Instantiating iphone/tweak in pouhack/... Done. iOSGods-iPhone:~ root# cd /var/root/pouhack iOSGods-iPhone:~/pouhack root# /var/theos/bin/nic.pl NIC 2.0 - New Instance Creator ------------------------------ [1.] iphone/application [2.] iphone/library [3.] iphone/preference_bundle [4.] iphone/tool [5.] iphone/tweak Choose a Template (required): 3 Project Name (required): poupref Package Name [com.yourcompany.poupref]: com.iosgods.poupref Author/Maintainer Name [System Administrator]: DiDA Instantiating iphone/preference_bundle in poupref/... Adding 'poupref' as an aggregate subproject in Theos makefile 'Makefile'. Done. iOSGods-iPhone:~/pouhack root# 2. Open the Tweak.xm file and add these lines to it: #include <Foundation/Foundation.h> %hook Coins - (int)have { NSDictionary *iosgods = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"/var/mobile/Library/Preferences/com.iosgods.poupref.plist"]]; return [[iosgods objectForKey:@"kCoins"] intValue]; } %end Copy paste them from here: http://pastebin.com/jN9VV563 3. Like I said, I will be using Pou as an example so some stuff will be a bit different with other apps. 4. Go to /pouhack/poupref/Resources/ and edit the poupref.plist file so it looks like this: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>label</key> <string>Pou Hack iOSGods.com</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.poupref</string> <key>key</key> <string>kCoins</string> // Button key <key>label</key> <string>Coins Hack</string> // Button text </dict> <dict> <key>cell</key> <string>PSEditTextCell</string> <key>defaults</key> <string>com.iosgods.poupref</string> <key>detail</key> <string>PSDetailController</string> <key>key</key> <string>kCoins</string> // Your key <key>label</key> <string></string> <key>placeholder</key> <string>Enter the amount of coins you want.</string> //placeholder text that will appear. </dict> </array> <key>title</key> <string>Pou Hack</string> //Hack title </dict> </plist> Copy it from here: http://pastebin.com/r69RsC3s 5. Save it and send it back to the poupref folder. 6. Now cd into your project folder and build the package. Note: if you get missing header files, download this archive and extract it to /var/theos/include/ [Hidden Content] Once you installed the tweak, go to settings and turn the hack on and enter the amount of coins you'd like. You're done! For more information on PSEditTextCell, see the iPhoneDevWiki page: http://iphonedevwiki.net/index.php/Preferences_specifier_plist#PSEditTextCell_.26_PSSecureEditTextCell Project files: [Hidden Content]
  6. The Jailbreak community has worked to help the iOS users by developing something special. After a long struggle they succeeded to develop a Cydia tweak which they give a name of miniCode. With this new Cydia tweak came the power of Xcode to your iPod, iPad and iPhone touch. What is Xcode? It is indeed a software development tool, developed by Apple, it enable iOS users to build all those astonishing App Store apps. And now you can also develop your own app using your iOS device. There are some limitations, but in fact it is the first mobile IDE that made it possible to compile, write and run iOS apps on his/her iPad, iPod and iPhone. We can’t call it a solid alternative of Desktop app but still using this tool you can code an entire app using your iOS device. Those who want to learn iOS development can now use this great tool but don’t have a Mac. They can now start iOS development on his/her iPad, iPod and iPhone. Keep it in mind that Mac is still essential to place your developed app on the App Store. It does not only enables you to develop an app from scratch, but also miniCode allows you to import and export your project among your iOS devices and Mac. Whenever a build fail the miniCode listed you all the errors and warnings. In this way this tweak assists you to fix the problems. miniCode tweak is totally free on Cydia. Download it and enjoying developing new things using your iOS devices. Source for all the writing above. Note: You need an SDK for the apps to Build & Run. The SDK should go in /var/stash/Developer/SDKs/. If you already have theos installed, you can simply create a Symlink on that directory with points to your theos SDK so you don't have to have 2 SDK's on one device and take up all those GB. Go to /var/stash/Developer/SDKs/ using iFile and press 'Edit' then the little '+' icon at the bottom then create a new Symbolic Link like this: Then open miniCode > Preferences > Default SDK: > and tap on your SDK.
  7. It saves on your current saved game.
  8. Rook

    Count to 4,000

    1219
  9. What? What are you saying?
  10. Check your PM for the SDK and make sure you follow this tutorial on how to install it. http://iosgods.com/topic/656-video-how-to-set-up-theos-on-your-idevice/
  11. Oh, The connection error?
  12. I tried yesterday. The order wouldn't pass through.
  13. And Super Mod, Cheater or Admin
  14. 1. First of all, log out of your current Apple ID by going to Settings -> iTunes & App Store and press the 'Sign Out' button. 2. With no Apple ID assigned to your iDevice, open the App Store and download a free app like Viber. 3. A popup will appear asking you to either Sign in to your existing Apple ID or Create a new one. Choose the second option. (Create a new Apple ID) 4. Choose the App Store Country you like and press next. 5. Next, enter your email address, password and fill in your security questions then press next once your done. Note: The email address must be active as you will be receiving a verification email later on. 6. Now you will need to enter some fake information from the country you selected but first, make sure the option 'None' is checked on Billing Information. Go to http://www.fakenamegenerator.com/, pick the country you selected on step 4 and click on generate. Enter the information you see there on your iDevice like this: 7. Press the Next button one more time and you will now see this screen: 8. Check your email address for an email from Apple to verify your Apple ID. 9. Once you've verified it, you may login and download any apps from the country you chose! Enjoy!
  15. PayPal Gift Card? I think not.
  16. Gave this a try, couldn't even play without constantly being connected to the internet. Maybe some minor features can be hacked but don't expect currency hack...
  17. Well, the tutorials are posted for free.
  18. Becoming VIP is nothing else other than Supporting the forum so it can continue to exist and you get the hacks you see in that section. There are some other features a VIP member has: http://iosgods.com/topic/261-vip-benefits/ If you would like to see something else added, we're open to sugestions.
  19. Moved to General Talk. I have a lot of favorite songs but right now I'm liking Imagine Dragons music.
  20. Hello yehe11! Welcome to iOSGods! We hope you like it here.
  21. http://iosgods.com/topic/1553-websites-where-you-can-stream-or-download-movies-for-free/ http://iosgods.com/topic/1523-streamdownload-moviestv-shows-on-your-pc-popcorn-time-720p1080p/
  22. Nice one! Moved to No Jailbreak Cheats.
×
  • 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