Method Chaining in Objective-C and how to make your own
When I was using the Masonry, I was shocked by author’s thoughts on bring Functional Programming to objective-c, which ...
When I was using the Masonry, I was shocked by author’s thoughts on bring Functional Programming to objective-c, which ...
What you can get from this article:What are Static Library and Dynamic Library not just in iOSHow do they ...
On iOS devices, there are mainly two types of sounds:Ringtones and reminders: Including system sounds such as phone calls, ...
Initializers, also known as constructors in other programming languages, have two types: Designated init and Convenience init. They are used ...
TLDRBoth git rebase and git merge are used to synchronise changes between branches. The difference is git rebase will revise ...
lazy variables are variables will be computed until accessing. In other words, lazy variables won't have the real value until ...
Once you have finished the SwiftUI code, it is always a good idea to preview it before implement any function ...