Reputation: 776
I've been on the iOS side alot, and was thinking about a mac app.
There isnt much interface to it.
The app is a reference app, with data thats searchable. there are about 300 items.
I want the app to:
a native window like this.
For example searching for an xml file and hovering over an item would bring out a sample window. I want my customised window to appear for that but to act in a similar fashion. I'm not sure if I've conveyed my question well enough.
Upvotes: 1
Views: 665
Reputation: 35803
You need to create a QuickLook plugin and register it with the system. Spotlight uses QuickLook to render the previews of items it finds.
You may also need to create a Spotlight Importer to tell Spotlight how to index your data.
Upvotes: 2