I digged in documentation but didn't find how to do. How can I add tooltip for every item in IKImageBrowserView?
|
feedback
|
|
The IKImageBrowserView is an NSView, so you can add the tooltip rectangles using these functions: For my implementation, I have the image browser inside a scrollview that doesn't resize, so I only have to update the tool tips when my data changes using this code, where images is my datasource array:
Then I implemented this function:
If your image browser changes its layout (you resize it adding/removing columns, or you change the zoom, etc) you will need to update all the tool tips. | |||
|
feedback
|