How to use multiple users with git
Feb 11, 2021, 11:59 AM
Did you ever switch from a project for work to a private project and in the rush of coding you committed and pushed your code with the wrong user? Keep reading how to avoid this situation by setting up different users for different...
Interface Builder tips and tricks
Jan 27, 2021, 10:50 AM
Even though SwiftUI is the new shiny tool to develop user interfaces for applications on all Apple platforms, UIKit will not be gone anytime soon. This also means, Interface Builder alongside Auto Layout will keep being the primary choice...
Write and maintain custom git commands
Jan 15, 2021, 6:25 AM
Git is a version control system used by many developers all around the globe. It has a lot of functionalities and you might, like me, not always remember everything you can do with it.Create a remote branchLet’s dive into it with an...
Prototyping Instagram‘s login screen using UIStackView
Dec 30, 2020, 6:18 AM
There are many things to consider when implementing user interfaces in iOS. It starts with the basic UI, but there are many more things to think of, from dark mode to accessibility. In this blog post I want to show you my approach of...
Simplify your developer life with Boop
Aug 30, 2020, 7:48 AM
"main_hero_name" = "Hercules";<string name="main_hero_name">Hercules</string>If you have ever seen this, you are probably an app developer, you have at least developed for Android and iOS and at...
Handling multiple sheets in SwiftUI
Jun 10, 2020, 1:14 PM
In order for a view to be displayed modally in SwiftUI, the sheet modifier can be used. In its simplest form a sheet is being presented if a given condition is true.struct ContentView: View {@State var presentSheet = falsevar body: some...
Building iOS frameworks with bitrise
Jun 8, 2020, 9:16 AM
Building iOS frameworks with BitriseBitrise is a really nice Continuous Integration service with a great user interface. Setting up a CI build for an iOS app is a matter of minutes. However, if you want to use Bitrise to build an iOS...