Latest Courses
ISTQB Artificial Intelligence Tester Sample ExamsCheck course
JAVA Programming Online Practice ExamCheck course
Programming for Kids and Beginners: Learn to Code in PythonCheck course
Practice Exams | Codeigniter 4 developer certificationCheck course
WordPress Practice Tests & Interview Questions (Basic/Adv)Check course
Git &Github Practice Tests & Interview Questions (Basic/Adv)Check course
Machine Learning and Deep Learning for Interviews & ResearchCheck course
Laravel | Build Pizza E-commerce WebsiteCheck course
101 - F5 CERTIFICATION EXAMCheck course
Master Python by Practicing 100 QuestionCheck course
ISTQB Artificial Intelligence Tester Sample ExamsCheck course
JAVA Programming Online Practice ExamCheck course
Programming for Kids and Beginners: Learn to Code in PythonCheck course
Practice Exams | Codeigniter 4 developer certificationCheck course
WordPress Practice Tests & Interview Questions (Basic/Adv)Check course
- 79% How to Make a Freaking iPhone App - iOS 11 and Swift 4

How to Make a Freaking iPhone App – iOS 11 and Swift 4

$14.99Track price

Add your review
Add to wishlistAdded to wishlistRemoved from wishlist 0
Add to compare
8.1/10 (Our Score)
Product is rated as #194 in category IOS Swift

Have you ever wanted to make an iPhone app? Did you get lost in YouTube videos or online blog posts? This is the course for you!

My name is Nick Walter and I am a self taught iPhone programmer. I know what it feels like to start from the beginning. In my course I will teach you Swift 4 and how to make iOS 11 apps. What will we make?

You’ll also learn:

Come join the funnest course on Udemy for making iPhone apps!

Instructor Details

Hi! I'm Nick, and I love to code. About five years ago I decided that I wanted to learn to code, but I had limited access to programming resources, and I was getting frustrated with all of the YouTube videos and online tutorials out there. I experimented, struggled, and definitely failed a lot, but I finally got the hang of it, so I decided that I wanted to change the way that people learned to code, and I started teaching. My experience as an online student has directly influenced my teaching style, because I know what it is like to be in your shoes. When Apple announced their new programming language, Swift, in 2014, I made my big online teaching debut and created the internet's first Swift course. Since that time, I have become a full-time online instructor and I now have courses not only in Swift, but also in iOS, Android, Django, Kotlin, Python, HTML, Blockchain, etc. I have also created five iOS apps from scratch that are currently live in the App Store and are being used by thousands of users worldwide. I love sharing my excitement for coding with my students, and I try to make learning as fun and as easy as possible. Thanks for being part of my coding community!

Specification: How to Make a Freaking iPhone App – iOS 11 and Swift 4

Duration

16.5 hours

Year

2018

Level

Beginner

Certificate

Yes

Quizzes

No

21 reviews for How to Make a Freaking iPhone App – iOS 11 and Swift 4

4.2 out of 5
13
4
2
0
2
Write a review
Show all Most Helpful Highest Rating Lowest Rating
  1. Muoch Keak

    Very engaging and the learning was fun. Gave a lot of positive vibes.

    Helpful(0) Unhelpful(0)You have already voted this
  2. Erni Mededovic

    Good, but started getting a bit too fast later in the game.

    Helpful(0) Unhelpful(0)You have already voted this
  3. Erni Mededovic

    Good, but started getting a bit too fast later in the game.

    Helpful(0) Unhelpful(0)You have already voted this
  4. Rylan Hall

    It’s very easy to learn from.

    Helpful(0) Unhelpful(0)You have already voted this
  5. Rylan Hall

    It’s very easy to learn from.

    Helpful(0) Unhelpful(0)You have already voted this
  6. Douglas Hartman

    Excellent Instructor

    Helpful(0) Unhelpful(0)You have already voted this
  7. Douglas Hartman

    Excellent Instructor

    Helpful(0) Unhelpful(0)You have already voted this
  8. Kevin Woodford

    Nick is awesome. I m an experienced programmer just learning Swift. Nick is enthusiastic and makes it fun!!

    Helpful(0) Unhelpful(0)You have already voted this
  9. Kevin Woodford

    Nick is awesome. I m an experienced programmer just learning Swift. Nick is enthusiastic and makes it fun!!

    Helpful(0) Unhelpful(0)You have already voted this
  10. Hammerhead96 .

    By and large it was very good. Nick is fun. My only complaint would be there are times the example code changes after a video edit (or whatever) and you have to notice it has changed to get things correct. He does a good job of not overloading a beginner very often, he tries to make it clear that not even seasoned coders know *every* function and call and syntax off the top of their head. Thank you Nick, I really enjoyed your course!

    Helpful(0) Unhelpful(0)You have already voted this
  11. Hammerhead96 .

    By and large it was very good. Nick is fun. My only complaint would be there are times the example code changes after a video edit (or whatever) and you have to notice it has changed to get things correct. He does a good job of not overloading a beginner very often, he tries to make it clear that not even seasoned coders know *every* function and call and syntax off the top of their head. Thank you Nick, I really enjoyed your course!

    Helpful(0) Unhelpful(0)You have already voted this
  12. Carson West

    very educational, I don’t have any experience in this part of programming and I’m getting everything, someone who speaks human while coding!

    Helpful(0) Unhelpful(0)You have already voted this
  13. Carson West

    very educational, I don’t have any experience in this part of programming and I’m getting everything, someone who speaks human while coding!

    Helpful(0) Unhelpful(0)You have already voted this
  14. Cole Reed

    Great intro to iOS and swift programming. Excellent instructor, with great energy that kept me going.

    Helpful(0) Unhelpful(0)You have already voted this
  15. Cole Reed

    Great intro to iOS and swift programming. Excellent instructor, with great energy that kept me going.

    Helpful(0) Unhelpful(0)You have already voted this
  16. Hassan

    to much talking

    Helpful(0) Unhelpful(0)You have already voted this
  17. Hassan

    to much talking

    Helpful(0) Unhelpful(0)You have already voted this
  18. Howard Clements

    Excellent class. Learning lots.

    Helpful(0) Unhelpful(0)You have already voted this
  19. Howard Clements

    Excellent class. Learning lots.

    Helpful(0) Unhelpful(0)You have already voted this
  20. Paul Read

    I did encounter a problem is the ToDo List in the following: func getToDo(){ if let context (UIApplication.shared.delegate as? AppDelegate)?.persistentContainer.viewContext{ if let coreDataToDos try? context.fetch(ToDoCoreData.fetchRequest()) as? [ToDoCoreData] { if let theToDos coreDataToDos { toDos theToDos tableView.reloadData() } } } } In the line if let theToDos coreDataToDos { error Initializer for conditional binding must have Optional type, not ‘[ToDoCoreData]’ I did come up with a work around, but don’t understand why this is a problem. (Xcode 11)

    Helpful(0) Unhelpful(0)You have already voted this
  21. Paul Read

    I did encounter a problem is the ToDo List in the following: func getToDo(){ if let context (UIApplication.shared.delegate as? AppDelegate)?.persistentContainer.viewContext{ if let coreDataToDos try? context.fetch(ToDoCoreData.fetchRequest()) as? [ToDoCoreData] { if let theToDos coreDataToDos { toDos theToDos tableView.reloadData() } } } } In the line if let theToDos coreDataToDos { error Initializer for conditional binding must have Optional type, not ‘[ToDoCoreData]’ I did come up with a work around, but don’t understand why this is a problem. (Xcode 11)

    Helpful(0) Unhelpful(0)You have already voted this

    Add a review

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.

    How to Make a Freaking iPhone App – iOS 11 and Swift 4
    How to Make a Freaking iPhone App – iOS 11 and Swift 4

    $14.99

    Price tracking

    Java Code Geeks
    Logo
    Register New Account
    Compare items
    • Total (0)
    Compare