Growing as Makers What I Learned at CocoaConf Atlanta I recently attended the Atlanta CocoaConf, a touring conference that focuses on Apple technologies (iOS and OS X).
Developer Tools An iOS Developer’s (Mostly) Open Source Toolchest iOS developers have many tools to choose from. Here are our picks (most of them open source) for one project.
Developer Tools How to Perform an Unwind Segue Programmatically In this blog post, I will show you how to perform Unwind Segues Programmatically and show you a couple ways you can pass data along.
iOS / OS X Exploring iOS Core Bluetooth: Read Requests Logging and packet sniffing to learn more about how Core Bluetooth's readValueForCharacteristic method behaves.
Developer Tools Unwind Segues in iOS Storyboards An example of how to use iOS Unwind Segues, which give you a way to “unwind” the navigation stack to a particular view controller.
iOS / OS X How to Animate Images in a UIImageView with Completion Handler How to get a completion handler when animating images in a UIImageView by using CAKeyFrameAnimation instead of setting the animationImages property.
iOS / OS X Easy Asynchronous Operations in iOS with ReactiveCocoa How to easily chain asynchronous operations in iOS using ReactiveCocoa.
Developer Tools Why I Prefer AppCode over Xcode For the last 6 month, I've had the opportunity to use AppCode as my primary IDE, and it's head-and-shoulders above Xcode.
Planning Your Project Developing a Mobile App? Some Numbers You’ll Need to Know Are you thinking about developing a mobile app? Here are current mobile phone statistics and resources for up-to-date numbers.
iOS / OS X Simplify iOS Models With Mantle – An Intro Mantle is a framework that makes using iOS models ridiculously easy. It's useful for serialization, deserialization, and equality.
Developer Tools Monitoring Your iOS Traffic With a few simple steps, you can leverage the sniffer tools you already know to intercept and view your iOS traffic.
Objective-C combineLatest vs. zip in ReactiveCocoa A couple of examples showing the differences between the +combineLatest: and +zip: operators in ReactiveCocoa.