
How to Implement SSL Pinning in Swift
Prevent man-in-the-middle attacks in your app whether you use Apple’s APIs or Alamofire
Prevent man-in-the-middle attacks in your app whether you use Apple’s APIs or Alamofire
Learn to make your SwiftUI views smaller, simpler, and more reusable.
In this MVVM with Combine Tutorial, you’ll learn how to get started using the Combine framework along with SwiftUI to build an app using the MVVM pattern
In this article we are going to learn how to implement the powerful MVVM design pattern in SwiftUI applications that are leveraging the Combine framework. The combination of these 3 concepts will be the standard
Implementing the Remote Configuration feature and integrating it with the latest Swift development environment; the pros and cons of adding dependencies.
Clean up state or print out debug information just before leaving the scope by defining the defer statement can improve development a lot.
In this tutorial, you’ll learn about Dependency Injection for iOS, as you create the profile page of a social media app in SwiftUI.
How to take advantage of Apple’s APIs with already-existing data for text classification
In this tutorial, you’ll learn how data flow in SwiftUI helps maintain a single source of truth for the data in your app.
Widgets are a powerful extension for your iPhone, iPad and Mac apps and is a perfect way to extend and personalize your iPhone home screen with new visual functionality.
Using Apple's recommended unified logging system using OSLog can be done in just a few steps. Learn how to use it in combination with the Console app.
Combine vs RxSwift: in this article we introduce Combine, the new Apple framework, and spot its main differences with RxSwift.
Welcome to another programming tutorial in the Swift programming language! Today we we are going to talk about a topic that usually everybody knows something more or less, but it’s important for new developers in Swift to really understand what is all about and how it works. It’s quite often for the subject of our discussion not to receive the proper attention, so it’s either misused or not used at all. It’s a topic that the more someone advances in Swift, the more necessary it becomes in order to write better and clearer code. And that topic is about Access […]
SwiftUI does not offer a SearchBar View out of the box yet. But we can fall back to using UISearchBar of UIKit.
Over a weekend recently I built a tiny Mac app (more on that later). What I was trying to achieve required executing AppleScript, like so many things on macOS. It seemed simple enough, but of course new app sandboxing restrictions...