Passing Data Between View Controllers (iOS Obj-C) Torrey Betts / Thu, May 29, 2014 Introduction When designing an app that makes use of multiple view controllers it may become necessary to pass data back and forth between the view controllers. This common occurance will be...
Using CAShapeLayer to Create a Switch (Objective-C) Torrey Betts / Wed, Oct 16, 2013 Introduction CALayers are extremely powerful for rendering primitives and geometry, then animating out changes to the geometry or visual properties such as color. In this blog post we'll expand...
Using CAShapeLayer to Create a Simple Indicator (Objective-C) Torrey Betts / Tue, Oct 15, 2013 Introduction CALayers are extremely powerful for rendering primitives and geometry, then animating out changes to the geometry or visual properties such as color. In this blog post we'll create...
Scanning Barcodes with iOS 7 (Objective-C) Torrey Betts / Thu, Oct 10, 2013 Introduction With the release of iOS 7, Apple included the ability to detect barcodes through its AV Foundation framework. The supported types are: UPC-A UPC-E Code 39 Code 39 mod 43 ...
Quick-Tip: Dividing a CGRect Using CGRectDivide (Objective-C) Torrey Betts / Tue, May 28, 2013 Introduction When developing iOS applications without using Interface Builder, you'll always end up with a headache of trying to work out some math to split up and layout your views. One obscure method...
Quick-Tip: Convert Coordinate System of a UIView Torrey Betts / Mon, May 6, 2013 Introduction When performing complex animations during run-time or any task that would require the translation of one UIView's location into that of another UIView , keeping track of the math on your...