I have a dictionary-like swift application that requires the user to manually click numerous buttons in an “explore” type feature to find said definitions. This leads the user to view individual storyboards(not swift UI) with the definitions of said words.
I want to create a search bar that will look through the words I’m defining (in a list I can input). When the user clicks on the word in the search result, I’d like it to take them to the previously made storyboard by its identifier.
Is this a possible feature to create? Many of the uses of the search protocol I’ve seen can programmatically carry over data into the same single storyboard by indexing the data and definitions. Still, I want it to be direct to the storyboards I’ve already made.
Any advice, tutorials, or workarounds would be appreciated.




