-
Notifications
You must be signed in to change notification settings - Fork 7
Extensions
Swift is a great language which adds more features and tricks with every new version but we still miss some of them or we are just lazy so we have a lot of our own extensions and tools.
Firstly we use ACKategories - library full of Swift tools, cocoa subclasses and extensions.
We also have a few extensions and classes which can't be separated in framework for various reasons. You can see these files in Extensions
folder.
Sure, UIStackView has built in spacing, but we have a few reasons to have better spacing 😏 We wrote a blog post about that, check it here!
We were struggling with errors for a pretty long time until we discovered the power of responder chain 💪 We added binding target for errors on all UIResponder
s so all you have to do is binding all errors which can occur in your VC to this target. Then you can implement error presentation in any part of the chain or you can let it go through down to UIWindow. Window will display simple alert by default, but you can also do it your own way (that's why it's not separated in framework ☝️😏).
Continue to Flow Coordinators ➡️