Oreilly - The Essentials of iOS App Development I and II LiveLessons (Video Training) - 9780133373639
Oreilly - The Essentials of iOS App Development I and II LiveLessons (Video Training)
by Felipe Laso Marsetti | Publisher: Addison-Wesley Professional | Release Date: October 2012 | ISBN: 9780133373639


The Essentials of iOS App Development LiveLessons is the most complete video training course yet on the basics of constructing an iOS 6 application. iOS expert and online tutorial instructor Felipe Laso Marsetti guides novice iOS programmers through the process of building the sample application iDo, a to-do list application. Along the way you'll learn about the latest iOS 6 features, incorporating them into your work. Packed with code samples and real-world examples, iOS 6 Fundamentals LiveLessons gives you a solid foundation and introduction to iOS 6, preparing you to continue exploring and learning these topics on your own. About the Author: Felipe Laso Marsetti is a systems engineer who has also been developing iOS applications professionally for the past two years. He has served as a technical editor for the publisher Apress and writes iOS tutorials for www.raywenderlich.com.
  1. Introduction
    • Introduction to The Essentials of iOS App Development I and II LiveLessons 00:05:32
  2. Lesson 1: What’s New in Objective-C and iOS 6
    • Learning objectives 00:00:33
    • 1.1 What’s new in iOS 6 00:11:25
    • 1.2 Updates to Accounts and the new Social Framework 00:04:01
    • 1.3 About Accessibility enhancements 00:02:04
    • 1.4 What’s new in Table Views and UIKit 00:13:26
    • 1.5 Other new features and enhancements in iOS 6 00:03:15
    • 1.6 About updates to Storyboards 00:04:44
    • 1.7 Subscripting in Objective-C 00:03:11
    • 1.8 About the changes and enhancements in Objective-C 00:07:18
  3. Lesson 2: Setup and Installation
    • Learning objectives 00:00:59
    • 2.1 How to create a free Apple Developer Account 00:04:54
    • 2.2 Enrolling in the iOS Developer Program 00:05:50
    • 2.3 About the features and resources in the iOS Developer Portal 00:07:03
    • 2.4 How to download Xcode and the iOS SDK 00:02:48
    • 2.5 How to install Xcode 00:01:07
    • 2.6 About provisioning profiles and certificates 00:16:52
  4. Lesson 3: Getting to Know Xcode and Interface Builder
    • Learning objectives 00:00:26
    • 3.1 The Xcode User Interface 00:30:38
    • 3.2 How to customize Xcode 00:01:41
    • 3.3 Additional installs available in Xcode 00:02:11
    • 3.4 The Organizer window and features 00:06:30
    • 3.5 Coding and the UI workflow 00:19:32
    • 3.6 How to work with Schemes and other settings 00:06:46
  5. Lesson 4: Common Design Patterns
    • Learning objectives 00:00:23
    • 4.1 What design patterns are and why use them 00:08:29
    • 4.2 The MVC pattern 00:14:52
    • 4.3 The Observer (Notifications) pattern 00:12:24
    • 4.4 The Delegate pattern 00:15:28
    • 4.5 The Adapter (Protocols) pattern 00:10:57
    • 4.6 Other patterns 00:04:20
  6. Lesson 5: Creating the UI in Interface Builder
    • Learning objectives 00:00:24
    • 5.1 NIBs versus Storyboards 00:27:15
    • 5.2 Springs/Struts versus Auto Layout 00:16:29
    • 5.3 How to create the iDo iPhone Storyboard part 1 00:31:10
    • 5.4 How to create the iDo iPhone Storyboard part 2 00:18:11
  7. Lesson 6: Programming the UI
    • Learning objectives 00:00:22
    • 6.1 How to create View Controller subclasses 00:49:23
    • 6.2 How to create Table View Cell subclasses 00:12:38
    • 6.3 Adding interactivity and functionality to iDo 00:42:24
    • 6.4 How to populate iDo with test data 00:20:22
  8. Lesson 7: Understanding Core Data
    • Learning objectives 00:00:22
    • 7.1 What is Core Data 00:07:09
    • 7.2 About the Core Data Stack 00:05:28
    • 7.3 Available Store types 00:02:20
    • 7.4 About the NSFetchedResultsController 00:04:21
    • 7.5 How to create a simple Core Data demo 00:42:28
  9. Lesson 8: Creating the Core Data Stack
    • Learning objectives 00:00:22
    • 8.1 How to create the Core Data Stack 00:15:53
    • 8.2 How to create the Core Data Model and NSManagedObject subclasses 00:07:08
    • 8.3 Beginning implementation of NSFetchedResultsController 00:35:14
  10. Lesson 9: Connecting Core Data to the UI
    • Learning objectives 00:00:22
    • 9.1 Finishing implementation of NSFetchedResultsController 00:36:00
    • 9.2 Adding pull to refresh functionality with the new UIRefreshControl 00:19:24
    • 9.3 Core Data polish and wrap up 00:14:20
  11. Lesson 10: UIKit Customization
    • Learning objectives 00:00:26
    • 10.1 Introduction to UIKit 00:03:03
    • 10.2 About Proxy objects 00:02:36
    • 10.3 How to get started with UIKit customization 00:23:51
    • 10.4 Adding icons, default images, and Retina Display support 00:07:50
    • 10.5 Finishing UIKit customization 00:13:17
  12. Lesson 11: Adding Social and Sharing Features
    • Learning objectives 00:00:23
    • 11.1 Introduction to Accounts Framework 00:04:18
    • 11.2 Introduction to Social Framework 00:02:27
    • 11.3 How to add Social features to iDo 00:17:48
    • 11.4 How to share via emails and SMS 00:22:24
    • 11.5 About Activity Views 00:02:41
  13. Lesson 12: Making iDo Accessible
    • Learning objectives 00:00:23
    • 12.1 What is Accessibility 00:02:10
    • 12.2 About Accessibility features in iOS 00:03:11
    • 12.3 How to add Accessibility to iDo part 1 00:12:59
    • 12.4 How to add Accessibility to iDo part 2 00:08:18
  14. Lesson 13: Working with Grand Central Dispatch
    • Learning objectives 00:00:19
    • 13.1 Introduction to GCD 00:07:07
    • 13.2 About Queues 00:05:55
    • 13.3 About Groups 00:02:27
    • 13.4 Grand Central Dispatch demo app 00:42:42
  15. Lesson 14: Creating iDo for iPad
    • Learning objectives 00:00:25
    • 14.1 Unique iPad features of iOS 00:03:22
    • 14.2 How to create the iDo iPad Storyboard part 1 00:14:19
    • 14.3 How to create the iDo iPad Storyboard part 2 00:14:50
    • 14.4 Get started with iPad specific subclasses 00:20:03
  16. Lesson 15: Finalizing the iDo iPad Version
    • Learning objectives 00:00:21
    • 15.1 Finishing iPad subclasses 00:13:25
    • 15.2 Refactoring code and verifying iPad support 00:10:41
    • 15.3 About iPad UI customization 00:10:48
  17. Lesson 16: Submitting Your App to iTunes Connect
    • Learning objectives 00:00:27
    • 16.1 Introduction and features of iTunes Connect 00:03:49
    • 16.2 How to create the iDo app in iTunes Connect 00:11:30
    • 16.3 Checking Certificates and Schemes for an iTunes Build 00:10:32
    • 16.4 How to build iDo for iTunes Connect 00:01:46
    • 16.5 How to submit iDo to the App Store 00:05:23
  18. Summary
    • Summary of Essentials of iOS App Development I and II LiveLessons 00:03:04
  19. Oreilly - The Essentials of iOS App Development I and II LiveLessons (Video Training)

    9780133373639.The.Essentials.of.iOS.App.Development.I.and.II.LiveLessons.Video.Training.part1.OR.rar

    9780133373639.The.Essentials.of.iOS.App.Development.I.and.II.LiveLessons.Video.Training.part2.OR.rar

    9780133373639.The.Essentials.of.iOS.App.Development.I.and.II.LiveLessons.Video.Training.part3.OR.rar

    9780133373639.The.Essentials.of.iOS.App.Development.I.and.II.LiveLessons.Video.Training.part4.OR.rar

    9780133373639.The.Essentials.of.iOS.App.Development.I.and.II.LiveLessons.Video.Training.part5.OR.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss