Everything iOS9 (but updated for 10!)
Everything iOS9 (but updated for 10!), available at $19.99, has an average rating of 4.5, with 32 lectures, based on 8 reviews, and has 217 subscribers.
You will learn about Learn hours of cutting edge Swift code Work with On Demand Resources Setup Achievements and Leaderboards in your app Work with Property Lists Get Photos and Access the Camera Roll in an app This course is ideal for individuals who are Anyone interested in learning Swift or Game Developers looking to work with iOS and tvOS It is particularly useful for Anyone interested in learning Swift or Game Developers looking to work with iOS and tvOS.
Enroll now: Everything iOS9 (but updated for 10!)
Summary
Title: Everything iOS9 (but updated for 10!)
Price: $19.99
Average Rating: 4.5
Number of Lectures: 32
Number of Published Lectures: 32
Number of Curriculum Items: 32
Number of Published Curriculum Objects: 32
Original Price: $24.99
Quality Status: approved
Status: Live
What You Will Learn
- Learn hours of cutting edge Swift code
- Work with On Demand Resources
- Setup Achievements and Leaderboards in your app
- Work with Property Lists
- Get Photos and Access the Camera Roll in an app
Who Should Attend
- Anyone interested in learning Swift
- Game Developers looking to work with iOS and tvOS
Target Audiences
- Anyone interested in learning Swift
- Game Developers looking to work with iOS and tvOS
**** UPDATE – We’ve included source projects updated for Swift 3. The code changes from Swift 2.2 to 3 were VERY minor changes (as you’ll see from the code)! With that said, here’s our original description for the course with plenty of references to Swift 2 and Xcode 7…
This series of videos will focus on iOS9-related topics. All of these use Swift, SpriteKit, Xcode 7/8 and apply in most cases to both iOS and tvOS. There is no recommended viewing order for these topics. Jump right into any of the topics below:
On-Demand Resources in iOS9
In this video tutorial we will discuss the Swift code related to loading On-Demand Resources, or simply ODR. ODR can drastically reduce the initial size of your app, and allow your users to only download what they need, when they need it. For example, you could hold off loading images / sounds for level 2 of a game if the player will still stuck on level 1.
Take Photos and Access the Camera Roll then Use them in a Sprite Kit Game!
Learn how program a SpriteKit and Swift 2 based app that allows user’s the option to add pictures from their camera or camera roll into the game or scene, mask the images, then adjust the layout of the picture within the mask (zoom in / out, move it, rotate, squash and stretch it). The edited masked-image can then appear in ANY other scene throughout the lifespan of the app (it’s saved as an NSUserDefault).
In-App Purchasing for iOS or tvOS Apps
Learn how to sell Consumable and Non-Consumable Products in your iOS9 or tvOS, Swift 2-based Sprite Kit App.
NSUserDefaults with Swift 2 (and how to save the location of nodes)
In this tutorial, we’ll look at saving various types of data to the NSUserDefaults. The NSUserDefaults is great for information that you want to exist even if the app is closed and reopened. As long as the user does not delete the app entirely, the data is still there (the data is basically like a property list that is saved at runtime). So we’ll look at saving String objects, Ints, Bools, Arrays and finally a Dictionary (where objects are moved at runtime and their location is saved for the next time the app is run).
Keyboard Input with Swift 2 for iOS and tvOS
This video tutorial will teach you how to open a view to enter keyboard input, close it and save the entered values as an NSUserDefault. Along the way you’ll also see how to include placeholder text (to easily adjust the width / height, font, and font size of the input area), include custom fonts for the input text, and test the values of the input text. For example, you could include a Parental Gate in your app that prompts parents to enter a specific value, like 12 + 3, then test to see if they typed in 15. This code has been test on both iOS and tvOS devices.
Parsing a property list with Swift 2
In these videos you will learn how to parse a property list with Swift 2 and organize data (Strings, Numbers, Arrays or Dictionaries with native Swift types). Plists are useful for just about any iOS / tvOS app, but in this particular example, we will create hypothetical level data (an Array of Dictionaries), and discuss reloading the same GameScene class while “leveling up” each time.
NSNotifications with Swift 2
In this Swift 2 video tutorial, we will work with NSNotifications to call functions / send data between classes without breaking good MVC pattern (for example, having subviews send info to parent views). In our example, we’ll make the GameScene post a notification to the GameViewController. We’ll even pass dictionary data using the userInfo parameter.
Helper Classes with Swift 2
In this short video tutorial, we’ll look at creating static variables and functions in a Helper class with Swift 2. This Helpers class will be accessible to any other class in your app, so it’s great for reusable functions and saving certain variables. This is similar to working with Singleton classes, and for good measure, we’ll even create a Singleton class to show you the subtle differences.
Game Center – Achievements and Leaderboards
In these Swift 2 video tutorials, we will work with Game Center to post scores to a Leaderboard and note progress toward unlocking Achievements. This of course involves setting up both a Leaderboard and Achievement in iTunes Connect, then authenticating the local player, and all the code involved with posting to Game Center. As always, you’ll learn every step of the code. The finished project is SpriteKit and Swift 2 based.
Course Curriculum
Chapter 1: Introduction
Lecture 1: Introduction
Chapter 2: Source Files for All Tutorials
Lecture 1: Source Projects for All Tutorials
Chapter 3: On-Demand Resources in iOS9
Lecture 1: On Demand Resources in iOS9 – Part 1
Lecture 2: On Demand Resources in iOS9 – Part 2
Chapter 4: Take Photos and Access the Camera Roll then Use them in a Sprite Kit Game
Lecture 1: Camera Roll Sprite Kit Project – Part 1
Lecture 2: Camera Roll Sprite Kit Project – Part 2
Lecture 3: Camera Roll Sprite Kit Project – Part 3
Lecture 4: Camera Roll Sprite Kit Project – Part 4
Lecture 5: Camera Roll Sprite Kit Project – Part 5
Lecture 6: Camera Roll Sprite Kit Project – Part 6
Lecture 7: Camera Roll Sprite Kit Project – Part 7
Lecture 8: Camera Roll Sprite Kit Project – Part 8
Chapter 5: In-App Purchasing for iOS or tvOS Apps
Lecture 1: In-App Purchasing Tutorial – Part 1 – Initial Setup
Lecture 2: In-App Purchasing Tutorial – Part 2 – Parsing Plist and Store Setup
Lecture 3: In-App Purchasing Tutorial – Part 3 – Buying a Product
Lecture 4: In-App Purchasing Tutorial – Part 4 – Delivering the Product
Lecture 5: In-App Purchasing Tutorial – Part 4 – Delivering the Product (continued)
Lecture 6: In-App Purchasing Tutorial – Part 5 – Restoring Purchases
Lecture 7: In-App Purchasing Tutorial – Part 5 – Restoring Purchases (continued)
Lecture 8: In-App Purchasing Tutorial – Part 6 – Alerts
Lecture 9: In-App Purchasing Tutorial – Part 7 – Quick Setup & Review
Chapter 6: NSUserDefaults with Swift 2 (and how to save the location of nodes)
Lecture 1: NSUserDefaults with Swift 2
Chapter 7: Keyboard Input with Swift 2 for iOS and tvOS
Lecture 1: iOS / tvOS Keyboard Input Tutorial – Part 1
Lecture 2: iOS / tvOS Keyboard Input Tutorial – Part 2
Chapter 8: Parsing a property list with Swift 2
Lecture 1: How to Parse a Property List – Part 1 – Strings and Arrays
Lecture 2: How to Parse a Property List – Part 2 – Arrays of Dictionaries
Chapter 9: NSNotifications with Swift 2
Lecture 1: Posting NSNotifications with Swift 2
Chapter 10: Helper Classes with Swift 2
Lecture 1: Helper Classes with Swift 2
Chapter 11: Game Center – Achievements and Leaderboards
Lecture 1: Game Center with Swift 2 – Initial Setup
Lecture 2: Game Center with Swift 2 – Posting High Scores
Lecture 3: Game Center with Swift 2 – Achievements
Lecture 4: Game Center with Swift 2 – Clearing Achievements and Wrap Up
Instructors
-
Justin Dike
CartoonSmart / Owner / Leader Developer and Instructor
Rating Distribution
- 1 stars: 0 votes
- 2 stars: 0 votes
- 3 stars: 1 votes
- 4 stars: 2 votes
- 5 stars: 5 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024