Learn how to build a custom help system in #SwiftUI. Create a floating help button, display dynamic help screens, & use Markdown for rich text then implement in your projects with just 2 lines of code!
Make your SwiftUI apps more user-friendly! 👇
📺 https://youtu.be/vr6gn8GRsvg
This week’s comments: folks seem to be enjoying the updates to our Semester of #SwiftUI. If you are looking to learn how to build iPhone apps, come join us. It’s the same content used in my university course, free to all online. The updates continue bit.ly/prof-g-swiftui
Say I have a NavigationSplitView with a sidebar and a table in details. Either the table or the sidebar have focus. Now I want to have a global "delete" command, that either deletes the entry in the table or sidebar, according to the focus.
How can I do that with SwiftUI? #swiftui #fp
FYI if your SwiftUI previews give you problems your project name should be a prime suspect.
Mine started breaking because of an apostrophe (fixed now). They also broke when I named a project inout (for learning about inout).
Lena had an umlaut as the culprit.
@rogelin correct! Thanks for suggesting that.
Actually, my App is currently owning an instance of a dedicated class. This way, I only have one object listening/receiving the notifications so I can be sure the code is only executed once.
So, similar to using an AppDelegate, if I had one for my #SwiftUI app!
I'm making a seasonal anime guide app, in the open for all to experience and learn from!
Got some tvOS bugs to fix in the settings today, let's see how many we can tackle!
#Jiiiii #DevStream #tvOS #visionOS #macOS #iOS #iPadOS #Anime #Swift #SwiftUI #Vapor #WebAuthn #BuildInPublic #TestFlight #PWA #WebPush
Come chill with me: https://youtube.com/live/xWMgFBGMauY
🚀 The TranslateKit SDK 1.1 is here – just 1 day after launch!
+1,000 new pre-localized strings 🎉
🔹 Now smartly organized by app category – no bloat!
🔹 Core stays lightweight (~250 universal strings)
🔹 Even better auto-generated keys with #tk
Make localization effortless. Try it now!
👉 https://github.com/FlineDev/TranslateKit
#SwiftLang #SwiftUI #iOSDev #Localization
need to remember to define my == thoroughly if I want #swiftui to show changes
Looking for something fun to watch! Check out my new series on building gardening app using SwiftUI & SwiftData.
https://www.youtube.com/playlist?list=PLDMXqpbtInQi5WU_YbOyef7WRcKj_0SO-
RTs and mentions are always appreciated. Also subscribe to my YT channel.
Testing SwiftUI: A Simple Counter App That Raises Big Questions ❓ https://qualitycoding.org/swiftui-testing-challenge/ #SwiftUI
I’m not giving up yet, however. I managed to add the streak counting in the end without producing strange warnings from #SwiftUI (?) and errors without a clear reason somewhere in @/Query getter.
#AppDesign #SoftwareEngineering #ProblemSolving
For apps supporting multiple windows (iPad & macOS), how do you make your task modifiers only be called once & not multiple times? e.g. to perform something global.
A boolean flag?
If only we had an App or WindowGroup task modifier instead of having to put a task on a View in a WindowGroup.