SwiftUI: How To Get Started With This Framework?
Declarative syntax, real-time preview, drag and drop - learn about the features of SwiftUI, Apple's new framework for UI design!
Project Catalyst, Apple’s new toolset transforming iPad apps into macOS ones is coming this fall. What should you know about it and the process itself? Read this article and learn!
Declarative syntax, real-time preview, drag and drop - learn about the features of SwiftUI, Apple's new framework for UI design!
Adding Gaussian blur to the UIView of your mobile application can improve its user experience a lot. Let me show you three simple ways to apply this popular visual effect in Swift.
While more and more people use the Internet on mobile devices, it's not always the reason your company should build its native mobile app. Luckily, there are enough alternatives to solve the problems of your audience and let your business grow.
Thinking about reaching new customers with a mobile app and wondering which technology to choose? We examine the differences between cross-platform mobile app development with React Native and native development for Android and iOS.
As an iOS developer, you certainly know that the basic programming architecture for Xcode is MVC - Model-View-Controller. But is MVC really the best way to make mobile apps? I checked out by giving the VIPER design pattern a try. Look what I found out.
Cannot read your ebook at the moment? Have it read for you by Ector! From now on, you can enjoy any book whenever you want with our free ebook app that converts text to speech.
In one of the previous tutorials, I was showing how to make a simple AppleScript that would clear cache generated by an Xcode app. This time we’ll make a macOS app that will mostly do the same, but we are going to add more features. Let’s face the challenge and take a look at the code!
I am a father of three incredible girls - one is five and two are three years old. They are much smarter than I am, and they are learning so fast, you can’t even imagine. But the greatest thing is their imagination. Amazing, indescribable imagination. Sometimes I try to learn something from my kids and this is what I did. About coding of course.
VIPER is a relatively new Clean Architecture iOS app design pattern, which has gained much attention and applause lately. Let us take a walk and examine its main features, as well as the basics of Clean Architecture itself.
In this short tutorial I will show you how to make a custom UIAlertController
which can be used on many View Controllers or even Storyboards. The main advantage of this solution is that your alert controller can be used many times and modified as you wish. OK, let’s start with the basics!
Clean temporary and unwanted files from Xcode with your own AppleScript app.
Spinners let people know that your app isn't frozen while loading content. Check out how to make one that can be used on many views and storyboards.
In this post I’d like to show you how to make a very simple calendar picker - using class UICollectionView
. Why? Sometimes default UIDatePicker
isn’t sufficient enough. For example, when you need horizontal date picker or when there is no place for the standard date picker. OK, let’s see how to do it.
How to make time if you are too busy? Find out some ideas how you can help yourself with learning Swift if you don’t have enough time. Or, if you want to improve your skills in a train, plane, break between lessons, etc.
Core Data is a powerful database for iOS and MacOS. It allows you to store information on device and - of course - read them. For small and bigger projects Core Data is a great solution. Especially that Core Data contains "magical" features as fetching, sorting or summing values.