Setting up Calabash for iOS projects with Cocoapods and Build Configurations
A guide to setting up Calabash for iOS automation testing using CocoaPods and custom Build Configurations to streamline integration.
A guide to setting up Calabash for iOS automation testing using CocoaPods and custom Build Configurations to streamline integration.
A guide to unit testing Core Data model layers in Swift using in-memory NSManagedObjectContext for fast, database-free tests.
Learn how to unit test Core Data model layer in Swift using in-memory NSManagedObjectContext for fast, efficient tests.
Explores hidden UIKit debug flags and internal preferences for iOS development, including methods to enable advanced logging.
A 5-step guide to getting started with unit testing in Swift, covering project setup, frameworks, imports, and access control.
A step-by-step guide to starting unit testing in Swift, covering project setup, frameworks, imports, and access control.
Swift unit testing tutorial on verifying method calls using Test Driven Development (TDD) with iOS examples.
Swift unit testing screencast on using Test Driven Development to verify method calls in iOS apps.
A curated list of resources for unit testing Swift iOS apps, including courses, blogs, and talks.
A curated list of resources for unit testing Swift iOS apps, including courses, blogs, and talks.
Explores the two main goals of Test Driven Development (TDD) for iOS apps in Swift: proper code placement and correct logic.
Explores the two main goals of Test Driven Development (TDD) for iOS/Swift apps: ensuring code is in the right place and logic is correct.
Article argues that Swift code without tests becomes legacy code, emphasizing the importance of unit testing for code quality.
Learn how to use Swift extensions to make any type conform to a protocol, even without source code access.
Announcing minimal.iOS.8, a Winterboard theme for jailbroken iPhones, now available on Cydia.
A cheat sheet for iOS developers listing common UITableViewDataSource protocol methods with code stubs.
A cheat sheet for iOS developers covering common UITableViewDataSource protocol methods with Swift code stubs.
How to distinguish between multiple UIActionSheets in Swift using tags and enumerations for cleaner code.
How to distinguish between multiple UIActionSheets in a single Swift view controller using tags and enums.
Explains a common Objective-C bug where messaging nil returns a zeroed struct, causing unexpected behavior when checking for NSNotFound.