Florian
@typ0genius
CS Student & Indie Dev 2x Swift Student Challenge Winner 👀 Explore SwiftUI 🧙ConnectWizard @connectwizard.app 🐳 WhaleDeck @whaledeck.app 📊 Umami Manager apple.co/40MP50F
With updateAppShortcutParameters, I can now see all my beautiful kittens in the Shortcuts app. To make them easier to recognize, I replaced the generic cat symbol in displayRepresentation with each cat’s image. When Siri works, I can now open my cats directly using the phrase.
I initially suspected that not implementing EnumerableEntityQuery/allEntities or not declaring the cat’s name as a property had caused all the trouble, but neither was the issue. The problem was that I wasn’t calling MyShortcutsProvider.updateAppShortcutParameters at launch.
You may have noticed that the result in Spotlight isn’t very visually appealing. We can easily fix that by defining a custom attributeSet in our AppEntity. By the way, tapping the result automatically opens the cat in the app using the OpenIntent we defined earlier 🪄
The next step for Gadse is to make my cats discoverable via Spotlight. This is quite easy: I index the AppEntity instances using CSSearchableIndex.indexAppEntities. The method adds new entities and updates existing ones. To remove entities from the index, use deleteAppEntities.
Oddly, the phrase is unreliable on OS 27. It sometimes reports that in-app search is unsupported, which is correct. More on that later. FB24148994. Replacing the app name with target to open the cat by name does not work. The phrase must include the app name.
For now, you can only view an overview of your cats and add new ones. To speed up prototyping, you can generate cats using Foundation Models and get cute kitty pictures from cataas.com.
As has happened several times before, I noticed a bug while creating new content. This time, I noticed that the Subscribe button on tvOS has been unreadable since at least tvOS 26. FB24104261
If you're annoyed that App Store Connect is down again, give @connectwizard.app a try! Not only is your synced App Store Connect data stored locally, keeping it completely private, but it also unlocks insights and data you've probably never seen before. #iOSDev
I am going completely insane. Why isn't Siri AI even able to find and run my app shortcut? 😭 Help!
Stats in @connectwizard.app are getting a major upgrade soon. You’ll be able to switch between different visualizations, toggle between absolute and relative values, and finally apply filters – just like in the raw data view. #iOSDev #SwiftUI
I am not sure if I fully got your question, but are you searching for @IntentParameterDependency?
Meet me at the Indie Fair on Wednesday with @connectwizard.app! I also have a few sweet discounts to give away, but they’re limited.
Then, dive deeper by exploring the raw data and creating your own presets. Categorize and filter by any of the report properties and values. Overlay the values of the prior period or aggregate them across the entire time frame.
You can quickly get started with many pre defined stats. This includes stats you are already familiar with from App Store Connect, but also many new ones you might not have known were possible. I will regularly add new ones, so expect the collection to grow.
Yes, Apple puts Cancel buttons on the leading edge. Close buttons on the trailing edge.