Swift 5.5 introduced a new concurrency model for Swift. It is async/await. It helps us create concurrency application easier. But I am very curious about how it works.I think understanding what’s going on under the hood will help us clear our mind about how it works. 1. Example To declare a sync function is very […]
Advance knowledge
Migrating iOS Project to Bazel – Part 2
To continue the previous part of this series, this part I’ll talk about how to config a sample iOS project using Bazel. 1. Installation To install Bazel on macOS, too simple. You can go to this link https://docs.bazel.build/versions/main/install-os-x.html. To simplest, I will use brew to install bazel. After install success, you can verify by running […]