ios

8 Articles

Create a calendar view in SwiftUI

In this post you will learn how to add the calendar page to your app. For the SwiftIsland app, I created a schedule view for the activities during a workshop day; this schedule view has now been seperated to its own SPM called SimpleCalendar. In this tutorial you will learn how to add this schedule page to your app.

SwiftUI Multi data-type chart

In iOS 16 Apple introduced Swift Charts, which makes generating beautiful charts both quick and easy. Although creating a line chart in Swift Charts using SwiftUI is not all to difficult, making one with two different data types might be another story. In this article I will go over how to create such a chart.

Post notification to Slack from Xcode Cloud

So you got Xcode Cloud setup, but now you want to have it post a message to your Slack channel? This article will show you how to implement that.

Getting started with Xcode Cloud

In this guide we're going to setup Xcode Cloud, run tests and deploy an app to AppStore Connect, all using Xcode Cloud. This is a comprehensive step-by-step guide on how to setup your first workflow in Xcode Cloud.

Setup GitHub Actions Runner on M1 Mac

Getting the full potential of your self-hosted GitHub Actions runner while being on an M1 machine.

Setting up your first CarPlay "app"

Getting started with CarPlay is easier than you think. In this post I will walk you through how to setup CarPlay and get started using CarPlay in your simulator.

A simple network manager in Swift

Network requests is something that basically every app needs and can be made many different ways. In this article you'll learn how to make these requests without adding extra unneeded libraries.

Failing safely in iOS Development

Anybody who has written more than one line of code will tell you that every systems has bugs. Sometimes these bugs result in crashes and sometimes they result in unwanted behavior. This, however, is not a reason to fail fast.