What is Async/await? In the latest Swift, the new async/await API is introduced for iOS 15. The async/await aims at[…]
Read moreTag: iOS development
How to use custom date format with JSONDecoder and Codable
Quick background When writing Swift code interacting with web service, we often use Codable protocol to encode and decode data.[…]
Read moreHow to localize iOS app (XCode 12)
At some point, we may need to support multiple languages in our app. This is where localization comes in. We[…]
Read moreHow to change app name for an iOS app in Xcode
Sometimes we start a project and decide to change the app name later on. How to change app name for[…]
Read moreSwiftUI: Navigating back to previous view after actions
Sometimes we want to navigate to the previous view after some actions are performed. For example, I was writing some[…]
Read moreFixing SwiftUI NavigationView on iPad
When moving a NavigationView originally designed only for iPhone to iPad, most likely you will find the view is not[…]
Read moreMultiline text input in SwiftUI (iOS 14)
As we know SwiftUI has been evolving since it was introduced. In iOS 13 when we want to create a[…]
Read moreSetting transparent background for List view in SwiftUI
Today I encountered the issue that when I set up a List view, the List background is always white, even[…]
Read moreMaking app icons
This post is about how to make app icons for iOS apps. If you are a developer and not a[…]
Read more