Oreilly - Objective-C Programming Fundamentals and Advanced LiveLessons (Video Training) - 9780133364354
Oreilly - Objective-C Programming Fundamentals and Advanced LiveLessons (Video Training)
by | Released December 2012 | ISBN: 9780133364354


In the Fundamentals section Jiva Devoe helps the viewer understand the key concepts and fundamentals of the Objective-C language. This video covers basic objective-c syntax, objects, memory management, protocols, the foundation framework and errors. The newest features in Objective-C such as ARC, blocks, and properties are included. After watching this video, viewers should be able to build and run basic Objective-c programs.In the Advanced section viewers will learn how to use blocks, use categories to extend the capabilities of existing classes, use keyvalue coding and keyvalue observing, use threading to harness the power of multiprocessor and multicore machines, understand design patterns e commonly used in Objective-C, and how to serialize and deserialize objects to property lists and to JSON strings. Finally, the video covers best practices for programming clean code in Objective-C. When viewers have completed these lessons, they will have an understanding of the necessary aspects of Objective-C that are needed to begin writing applications using cocoa and cocoa touch.About the Author:Jiva DeVoe is the founder of Random Ideas, LLC, a software company specializing in iPhone and Mac OS X applications. He's an author, blogger and software developer with nearly 20 years of experience in the software industry. Today, Jiva works primarily with Objective-C, Cocoa and Cocoa Touch, developing applications for the iPhone and Mac OS X. Jiva has written several award winning apps and is the author of Objective-C Developer Reference and Cocoa Touch for iPhone OS 3 Developer Reference. Contact Jiva through his blog at www.random-ideas.net Show and hide more
  1. Introduction to Objective-C Programming Fundamentals LiveLessons
    • Introduction to Objective-C Programming Fundamentals LiveLessons 00:03:23
  2. Lesson 1 (Fundamentals): Basic Objective-C Syntax
    • Learning objectives 00:01:12
    • 1.1 Write an Objective-C program 00:09:17
    • 1.2.a Understand the basic Objective-C types 00:25:32
    • 1.2.b Understand the basic Objective-C types 00:22:37
    • 1.3 Declare and use functions 00:23:04
    • 1.4 Control program flow 00:34:16
    • 1.5 Use the preprocessor 00:10:37
  3. Lesson 2 (Fundamentals): Objects in Objective-C
    • Learning objectives 00:01:03
    • 2.1 Understand classes and objects in Objective-C 00:05:49
    • 2.2 Create Objects 00:15:30
    • 2.3 Declare classes 00:52:58
  4. Lesson 3 (Fundamentals): Objective-C Memory Management
    • Learning objectives 00:01:01
    • 3.1 Do traditional Objective-C manual memory management 00:06:56
    • 3.2 Use autorelease pools 00:08:13
    • 3.3 Use Automatic Reference Counting 00:09:04
  5. Lesson 4 (Fundamentals): Protocols
    • Learning objectives 00:01:06
    • 4.1 Understand the Protocol design pattern 00:04:39
    • 4.2 Use Protocols with your classes 00:02:19
    • 4.3 Implement your own protocols 00:10:32
    • 4.4 Understand informal protocols 00:02:15
  6. Lesson 5 (Fundamentals): The Foundation Framework
    • Learning objectives 00:01:09
    • 5.1 Use strings 00:16:02
    • 5.2 Work with NSArray 00:10:16
    • 5.3 Use NSDictionary 00:06:47
    • 5.4 Work with other collections 00:01:47
    • 5.5 Box Scalar Values 00:07:12
    • 5.6 Use Other Frameworks In Your Projects 00:04:30
  7. Lesson 6 (Fundamentals): Errors
    • Learning objectives 00:00:50
    • 6.1 Understand error classification 00:02:51
    • 6.2 Use return codes 00:02:37
    • 6.3 Understand when and how to use exceptions 00:13:04
    • 6.4 Use NSError 00:07:21
  8. Introduction to Objective-C Advanced Programming LiveLessons
    • Introduction to Objective-C Advanced Programming LiveLessons 00:04:12
  9. Lesson 1 (Advanced): Blocks
    • Learning objectives 00:01:43
    • 1.1 Understand blocks 00:05:30
    • 1.2 Declare blocks 00:02:43
    • 1.3 Use blocks 00:04:40
    • 1.4 Understand block scope 00:05:57
    • 1.5 Avoid problems with blocks 00:05:24
    • 1.6 Know when to use blocks 00:01:49
  10. Lesson 2 (Advanced): Extending Existing Class Capabilities
    • Learning objectives 00:01:51
    • 2.1 Declare categories 00:05:17
    • 2.2 Implement category methods 00:02:42
    • 2.3 Understand category design patterns 00:05:11
    • 2.4 Implement protocols with categories 00:04:09
    • 2.5 Use anonymous categories 00:02:14
    • 2.6 Avoid category gotchas 00:02:11
  11. Lesson 3 (Advanced): Key Value Coding and Key Value Observing
    • Learning objectives 00:01:33
    • 3.1 Declare KVC compliant properties 00:05:31
    • 3.2 Access properties using key value coding 00:07:49
    • 3.3 Observe changes on objects using key value observing 00:08:30
    • 3.4 Implement manual KVO notifications 00:05:30
    • 3.5 Avoid KVO gotchas 00:01:42
  12. Lesson 4 (Advanced): Threads
    • Learning objectives 00:02:04
    • 4.1 Understand threads 00:02:12
    • 4.2 Understand Grand Central Dispatch 00:04:42
    • 4.3 Use the low level GCD interface 00:14:54
    • 4.4 Use NSOperation and NSOperationQueue 00:08:36
    • 4.5 Synchronize threads 00:03:27
    • 4.6 Understand atomic accessors 00:01:14
  13. Lesson 5 (Advanced): Objective-C Design Patterns
    • Learning objectives 00:02:26
    • 5.1 Understand design patterns 00:01:50
    • 5.2 Understand design patterns in Objective-C 00:02:54
    • 5.3 Create singletons 00:05:29
    • 5.4 Delegate responsibility 00:09:05
    • 5.5 Notify objects of changes 00:08:06
  14. Lesson 6 (Advanced): Data Serialization
    • Learning objectives 00:01:40
    • 6.1 Use NSCoder 00:11:36
    • 6.2 Use property lists 00:02:27
    • 6.3 Use JSON serialization 00:04:47
  15. Lesson 7 (Advanced): Objective-C Best Practices
    • Learning objectives 00:03:27
    • 7.1 Understand Modern Objective-C 00:02:50
    • 7.2 Practice appropriate data encapsulation 00:03:03
    • 7.3 Use properties appropriately 00:03:26
    • 7.4 Use dot notation appropriately 00:02:30
    • 7.5 Prevent non-ARC code from using your ARC code 00:01:51
  16. Summary of Objective-C Fundamentals and Advanced Programming LiveLessons
    • Summary of Objective-C Fundamentals and Advanced Programming LiveLessons 00:01:59
  17. Show and hide more

    Oreilly - Objective-C Programming Fundamentals and Advanced LiveLessons (Video Training)

    9780133364354.objective.c.programming.fundamentals.OR.part1.rar

    9780133364354.objective.c.programming.fundamentals.OR.part2.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