Learn how to add rectangular, inline, and circular widgets to your iOS app’s Lock Screen for enhanced user experience.
This guide demonstrates how to create a simple view for working with tags in SwiftUI. We’ll create a tag view in a sample quotation app.
Incorporating Live Activities into your iOS app enables you to provide real-time updates right on the Lock Screen or in the Dynamic Island.
Let’s explore how to use UIPickerView in Swift forms to provide users with a selection of data choices presented in a wheel format.
Learn how to easily add animated GIFs to your iOS apps using a performant engine, FLAnimatedImage by Flipboard, and SwiftUI.
Codable
In this article, we’ll investigate simplifying JSON parsing in Swift using Codable. We’ll also review several practical JSON use cases.
typealias
in SwiftIn this article, we review some basic and advanced examples of the typealias function in Swift, which can help make code more readable and easier to maintain.
Learn about Swift’s defer statement and syntax, and examine several real-world use cases that you can use in practice.
SwiftUI can be used to build charts for iOS apps faster as it requires less code. In this article, we use SwiftUI to create and style bar charts and line charts modeled after those from Apple’s Health app.
Learn how to create frameworks in Swift through Xcode to make your code modularized and reusable.
Extensions in Swift are a way to add your functionality to types you do not own. This overview will show you how they work.
for-in
loops in Swift tutorialLearn how to use for-in loops for Swift, including examples using arrays, range operators, dictionaries, and enums.