iOS development - linear layout artifact UIStackView

Today, I'd like to introduce a linear layout artifact UIStackView launched by iOS9. If your project is at least suitable for iOS9, you can use it happily. In the AutoLayout layout, we need to set various dependencies for the subview. When we need to insert or delete a view, we need to change a lot of constraints in it. In terms of pure code, M ...

Added by cybaf on Mon, 03 Jan 2022 18:12:13 +0200

iOS attribute keyword

Several iOS attribute keywords 1.nonatomic,atomiac: Nonatomic: nonatomic, atomiac atomic. The default attribute is atomiac, that is, atomic. Nonatomic has high execution efficiency. atomiac: reading and writing is safe, but inefficient, not absolutely safe. 2.readwrite,readonly: Readwrite read-write, readonly read-only. The default property ...

Added by ddubs on Wed, 29 Dec 2021 09:34:41 +0200