Learn Swift and iOS Development
Master iOS development through in-depth tutorials and comprehensive courses on Swift, SwiftUI, UIKit, Core Data, and more.
Master iOS development through in-depth tutorials and comprehensive courses on Swift, SwiftUI, UIKit, Core Data, and more.
Discover the newest tutorials on Swift and iOS development
Discover the newest tutorials on Swift and iOS development
Showing 541 to 552 of 716 posts
Swift includes a number of features Objective-C developers have wanted for years. Availability checking is one of those features.
in Swift
The early days of Apple's App Store are sometimes referred to as the gold rush. Paid applications were the norm and prices were much higher than they are now. What options do you have as a developer or entrepreneur in today's App Store? Is it possible to make a living as an independent mobile developer? In this article, I list the options you have to make money from your applications in Apple's App Store.
in Business
When access levels were first introduced in Swift, there was some confusion and criticism about them. While developers were excited about the addition of access control to the Swift programming language, the behavior of the private keyword was different from that of other programming languages.
in Swift
In the previous installment of HealthKit Fundamentals, we discussed the sensitivity of health data and the limitations of the HealthKit APIs with respect to accessing the user's health data. Apple put these limitations in place to ensure developers respect the company's commitment to protecting the customer's privacy.
in HealthKit
The Core Data stack we have built in this series is slowly taking shape. With every iteration, we add a dash of complexity in return for a few key advantages.
in Core Data
There are many respected developers in the Swift and Cocoa communities. In this article, I list ten people that you should follow.
Getting started with HealthKit is not difficult as long as you are not intimidated by the slew of classes, methods, and constants the framework defines. Without a proper foundation, you may miss the forest for the trees.
in HealthKit
Previously, we updated the Core Data stack by adding a private managed object context. Remember that the private managed object context performs two tasks. It pushes its changes to the persistent store coordinator. It acts as the parent of the main managed object context.
in Core Data
Have you ever considered using more than one managed object context in a Core Data application? In this installment of Building the Perfect Core Data Stack, we explore the options you have and the benefits of a Core Data stack with multiple managed object contexts.
in Core Data
In 2014, Apple introduced HealthKit alongside iOS 8. HealthKit is Apple's solution for storing, managing, and sharing health data. HealthKit enables developers to read and write health data to a database managed by the operating system.
in HealthKit
Type safety is a fundamental concept of the Swift programming language and optionals neatly tie into Swift's strict type safety rules. The concept underlying optionals is simple, an optional has a value or it does not.
in Patterns
In this series, we explore several techniques and best practices for building a robust, modern Core Data stack. Modern? Yes. Core Data has undergone several important changes in the past few years. In this series, we discuss what a modern Core Data stack looks like.
in Core Data