Jump to content

Rook

Administrator
  • Posts

    65,207
  • Joined

  • Last visited

Everything posted by Rook

  1. 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.
  2. 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]
  3. lol Remove the extra / at the end. https://www.humblebundle.com/store
  4. Go here: http://humblebundle.com/store Follow their instructions on how to get it.
  5. 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.
  6. Title says it all! Website: http://www.iosopendev.com/ Download Page: http://iosopendev.com/download/ For articles on use and troubleshooting check out their GitHub page: https://github.com/kokoabim/iOSOpenDev/wiki/_pages
  7. Yeah, there are like 12 more sites like this in VIP which offer Fan Page Likes, Comments and everything else. You can also login to your Fake Facebook account and send likes to any Facebook status or photo.
  8. Only for you Check out the VIP topic for some more sites. :thumbsup:
  9. There's this for Windows: http://gikir.com/product.php
  10. LLDB is the new debugger for iOS 7. Download it from here: https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/apiexplorer/debugserver.zip Extract it to: /usr/bin/ Some information from iPhoneDevWiki: http://iphonedevwiki.net/index.php/Debugserver GDB to LLDB command map: http://lldb.llvm.org/lldb-gdb.html LLDB ON WINDOWS: http://iosgods.com/topic/5380-tutorial-how-to-get-lldb-working-on-windows/
  11. 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!
  12. Hey, hello! What's up? Let's get started! Note 2: You must turn on Facebook Subscribers in order for this to work and the status/photo's privacy needs to be public. A fake account is highly suggested. 1. Go to this website: [Hidden Content] 2. Click the "CLICK HERE" button on 'Method 1' in the picture below: 3. Log in to you Fake Facebook Account and give/allow the app permissions. 4. Once done, you will see this screen: 5. Close that tab and go back to the status likes webpage and click the second "CLICK HERE" button. 6. A new tab will open and we need to copy that tabs URL and enter it in the text box below and hit 'Submit' 7. Then your statuses from your Timeline will show. 8. Simply click the 'Submit' button next to the status and it'll send you the likes. You can also click the next tab if you want photo likes. Same procedure. 9. VERY IMPORTANT! After you got the likes you need, you need to remove the app you just gave permissions to on step 3 otherwise you will start liking other people's statuses without you knowing! Facebook Settings -> Apps -> and remove the app. That's all! The above webpage is just one of which gives you tons of free likes. If you are looking for more likes on your Photos, Statuses, Comments and even Facebook Fan Page likes, check out the VIP topic: http://iosgods.com/topic/1723-get-unlimited-facebook-pagesstatusphotocomments-likes-mass-friends-adder/ (there's also mass friend adder)
  13. Hey guys! Here are some websites I've gathered from the World Wide Web which gives you free Facebook likes almost anywhere! Some also have Fan Page Likes, Photo likes, Status likes, Photo/Status Comments and a mass friend adder. I'll explain what some webpages do like the free movies thread. NOTE: It is highly recommended you use a fake Facebook account before using any of these. To use them, instructions are included on each webpage. If you don't understand them, take a look at this tutorial: http://iosgods.com/topic/1724-how-to-get-tons-of-facebook-status-likes/ [Hidden Content]
  14. Note: This tutorial is based on the Windows Version of Cyberduck. 1. Download Cyberduck from here: https://cyberduck.io/ 2. Install it like you would install any other program. 3. Open Cyberduck from your Desktop: 4. Press CTRL+O on your or click the "Open Connection" option at the top. 5. Select SFTP (SSH File Transfer Protocol) from the dropdown list and for the Server, insert your iDevice's IP Address (Settings - Wi-Fi - WIFINAME - IP Address) 6. Insert "root" (without quotations) as the Username and "alpine" (without quotations) as the password like this: 7. Click the 'Connect' button and if you entered everything correctly, your iDevice's files will appear. The default directory you will be in is /private/var/root/ 8. That's it.
  15. Rook

    Count to 4,000

    1206 he probably was on the wrong page.
×
  • 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