9 Followers
31 Following
70 Posts
📱iOS engineer. 🏍️ Motorcycles.🔒Privacy enthusiast and a fan of tiny music venues
Githubhttps://github.com/Nik-MS
Thought I was clever making a custom drawer component, only to realize that SwiftUI already has a DisclosureGroup component that’s literally the same thing 🤦‍♂️. Weird thing tho is that my custom component would ignore its transition animations to show/hide its content if the component was rendered inside of a List or Form. DisclosureGroup works just fine under a List. What am I missing here? Why are my animations ignored if inside a List? #BuildInPublic #iosdev #swiftui

In case anyone needs this: When using Xcode String Catalogs for localization, you can also include variations for plurality. Say, if you want to say “{1} book” or “{20} books”.

I spent too long 🤦‍♂️ trying to localize a string that has multiple integer arguments. If you're seeing your localizations outputting random🍑 numbers, your probs need to specify the correct argument. You do this using a positional modifier, %n$lld where n specifies which argument. #swift #iosdev #BuildInPublic