IKImageBrowserView is a Image Kit View for the Cocoa Framework on Mac OS X 10.5 and above.
Questions tagged [ikimagebrowserview]
95 questions
1
vote
0 answers
IKImageBrowserView and highlighting a specific image based on state
So I have a IKImageBrowser full of images that I pull from a core data. The image itself isn't in core data just the reference to it. I'm trying to figure out a way to indicate that a specific image is disabled. Like a red border around it. This…

Ryan Knopp
- 582
- 1
- 4
- 12
1
vote
1 answer
Replace IKImageBrowserView's Superclass with NSVisualEffectView
I looking to make my IKImageBrowserView's background have a blurred background. According to the Apple Documentation, the IKImageBrowserView is based upon NSView. Is it possible to make an IKImageBrowserView inherit from an NSVisualEffectView…

foobar5512
- 2,470
- 5
- 36
- 52
1
vote
0 answers
Different images for IKImageBrowserView and Quick Look
I'm writing a program that shows images from internet.
I'm using a IKImageBrowserView for it, using NSURLs.
I'd like to show thumbnails in IKImageBrowserView and full res images in Quick Look.
Quick Look is automatically invoked by…

Phoenix
- 181
- 3
- 13
1
vote
0 answers
How to execute code after Quick Look Preview Panel is closed?
I have an IKImageBrowserView and i activated the Quick Look Preview Panel for the items in the IKImageBrowserView (via [browser setCanControlQuickLookPanel:true];).
I want to execute some code after the user closed the Quick View Panel. How can i…

MartinW
- 4,966
- 2
- 24
- 60
1
vote
0 answers
For which file types does IKImageBrowserView create thumbnails by default?
IKImageBrowserView does create thumbnails (show images in the browser view as opposed to an empty rectangle) for certain image formats, but also for PDFs and certain movie formats.
For which file types does IKImageBrowserView create thumbnails by…

MartinW
- 4,966
- 2
- 24
- 60
1
vote
1 answer
Object loses reference
I have a IKImageBrowserView which has its own controller - BrowserController.h + .m
@interface BrowserController : NSWindowController{
NSMutableArray *_images;
}
@property (strong,nonatomic) IBOutlet IKImageBrowserView…

spacecash21
- 1,331
- 1
- 19
- 41
1
vote
1 answer
How can i change IKImageBrowserView’s doubleclick behaviour?
I use a IKImageBrowserView in a Mac 10.9-only application.
When I doubleclick an item in the IKImageBrowserView the item is opened in Preview.
I want to change this behaviour and open a window of my own application with details about the…

MartinW
- 4,966
- 2
- 24
- 60
1
vote
0 answers
IKImageBrowserView: Drag & Drop Error
I'm using an IKImageBrowserView and get the error described here. So I should use NSURLs instead of NSStrings/paths. I have changed everything to NSURL now, but get still the same error. I tried using IKImageBrowserNSURLRepresentationType and…

ChuckThePlant
- 21
- 5
1
vote
1 answer
Adding NSImage to IKimagerowserview
I am able to add NSImages to my NSCollectionView without having to first save them on disk. The images are fed into the collection view from an NSMutableArray. This way people can see the images without first having to save them.
Is there something…

Nico
- 3,471
- 2
- 29
- 40
1
vote
1 answer
How can I implement a thumbnail-based view for user selection in Cocoa?
I have what I thought was a pretty simple need but I'm not sure how to go about implementing it.
At various points in my interface, the user is asked to make a selection of something rather visual (like choosing a layout for a page or a color…

Ellie P.
- 4,133
- 3
- 30
- 30
1
vote
1 answer
How to use IKImagebrowserView's group display?
The effect I want is like the iPhoto group(or timeline) displaying.
I have already realized the common IKImageBrowserView. which is like
But I don't know how to assign them in different groups.
I referred: customizing IKImageBrowserView group…

droughtrain
- 257
- 1
- 4
- 18
1
vote
1 answer
IKImageBrowserView selection problems
For example, the initial status is all images selected
when I clicked one, I hope it unselected, but the current status is no response for the action
Is there some settings? Thanks for any help.

droughtrain
- 257
- 1
- 4
- 18
1
vote
1 answer
how to change IKImageBroswerView dragging image
I'm working on a program on Mac_OS 10.6 and later. The program language I'm using is Objc.
And I wonder what can I do to change the dragging image for an IKImageBrowserView? Is there any methods or delegates to change the default dragging…

LYTTE_LJ
- 79
- 8
1
vote
2 answers
how to set background color to IKImageBrowserView
I am new to cocoa..
I am creating one of the colorful window. so I need set background color to IKImageBrowserView. I think subclassing IKImageBrowserView is the way to set background color but it is too difficult for me..
Any other way to set…

NewStack
- 990
- 8
- 19
1
vote
1 answer
IKImageBrowserView does not refresh unless user scrolls
We've got an IKImageBrowserView that displays a bunch of images. We asynchronously download those images in the background and cache them to disk. We then notify the IKImageBrowserView that the imageRepresentation has changed using KVC. e.g.…

Tony
- 36,591
- 10
- 48
- 83