How to Start iOS Development Career – The 5 Steps Plan
Hallo vrienden, Leo hier. The article today is a meta-programming article. It is not about programming itself but is how I started my iOS development career. The motivation behind this is the common pattern of people lost at the beginning of their journeys in the world of iOS. Keep in mind this is the first […]
How to use KeyboardLayoutGuide API to move UITextField when the keyboard appears on iOS
Hallo allemaal, Leo hier. The topic today is the new KeyboardLayoutGuide and how you can use it to move views when the keyboard appears. I’m very happy. This article brings joy to my soul and you’ll know why after a brief story. We will explore a new way, I mean iOS 15 and above, to […]
Project a Value From a Property Wrapper
Hello boys and girls, Leo here. I’m very excited to inform you all that today we will talk about how to project a value from a property wrapper. Today we will explore one great feature of property wrappers, the projected value. It is very useful when you want to have a little more info about […]
What are Lazy Variables and Why Use in Swift
Hello ladies and gentlemen, Leo here. Today the topic is lazy variables and why it’s important for you to know. The lazy var is a special type of *var* that means the variable value isn’t calculated until we first use it. This brings to the table the flexibility of having 1000 items in memory that […]
Safe Get a Value From an Array in Swift
Hello people, Leo here. The topic today is how to Safe get a value from an array in Swift. Why this is important? Well, if you don’t have a mechanism to safe get values from your arrays, one day your app can crash in production because you didn’t cover all the edge cases for your […]