IKImageBrowserView is a Image Kit View for the Cocoa Framework on Mac OS X 10.5 and above.
Questions tagged [ikimagebrowserview]
95 questions
3
votes
3 answers
How do I change IKImageBrowserView's selection highlight color
When you select an item in IKImageBrowserView it is highlighted grey around the edges. How do I change the color of this?

Chris
- 1,005
- 1
- 13
- 27
2
votes
2 answers
Datasource method for reordering in IKImageBrowserView, not being called
- (BOOL) imageBrowser:(IKImageBrowserView *) aBrowser moveItemsAtIndexes: (NSIndexSet *)indexes toIndex:(NSUInteger)destinationIndex;
This datasource method for reordering in IKImageBrowserView is not being called. Nib connections have been made…

Soorya
- 39
- 5
2
votes
1 answer
How can I avoid mirror effect of image in coverflow
I have downloaded a coverflow sample from the link
http://www.macresearch.org/cocoa-tutorial-image-kit-cover-flow-and-quicklook-doing-things-we-shouldnt-are-too-fun-resist.
I need open flow effect but I dont need miror effect of images.Is it…

ahmadbaig
- 1,056
- 1
- 8
- 9
2
votes
0 answers
Issue with NSScrollView
I have a NSScrollView containng an iKImageBrowserView. If I do not call setWantsLayer:YES on the scrollview, the vertical scroller is never shown.
Do you know what can be the issue and hos to fix it (activating layers creates other issues in my…

AP.
- 5,205
- 7
- 50
- 94
2
votes
1 answer
in place title editing in IKImageBrowserView
I am trying to create an in place ttle editing in an IKImageBrowser like the one we have in the finder to rename a file or folder.
Unfortunately I do not have any idea on how to start.
If you have piece of code, pointers, ideas, they are…

AP.
- 5,205
- 7
- 50
- 94
2
votes
1 answer
IKImageBrowserItem imageRepresentationType error
Just started leaning Cocoa and its dev env, libs, etc.
The error I'm getting:
"_IKImageBrowserNSImageRepresentationType", referenced from:
-[ImageBrowserItem imageRepresentationType] in ImageBrowserItem.o
ld: symbol(s) not found
Any ideas on how…

adamellsworth
- 361
- 1
- 3
- 15
2
votes
1 answer
Sporadic crash on 10.5 when loading IKImageBrowserViews in nib
I'm having a weird crashing problem with my app that only happens on 10.5. It doesn't happen all the time, but it happens on startup, seemingly when the nib is loading. (BWTransparentScrollView appears in the crash report, but the crash there…

Simone Manganelli
- 958
- 7
- 18
2
votes
1 answer
Cocoa: How do you make the background of an IKImageBrowserView transparent?
How do you make the background of an IKImageBrowserView transparent? There seems to be no background color option in interface builder.
What I've tried:
I've never used Core Animation, but I saw IKImageBrowserView has a setBackgroundLayer method,…

Max
- 35
- 3
2
votes
0 answers
Is it possible to modify the selection rect for an IKImageBrowserCell?
We are using a subclass of IKImageBrowserView that contains a subclass of IKImageBrowserCell as the cells
The problem we're facing is when an image has a tall aspect ratio:
That first item can only be selected when you -mouseDown: directly on the…

A O
- 5,516
- 3
- 33
- 68
2
votes
1 answer
How to call IKImageBrowser cellWasDoubleClickedAtIndex by pressing double keys?
I had used IKImageBrowserView to show image gallery.
Currently opening next view on click on image,
I am using double click of left mouse key to call cellWasDoubleClickedAtIndex this method.
-(void)imageBrowser:(IKImageBrowserView *)aBrowser…

Solid Soft
- 1,872
- 2
- 25
- 55
2
votes
2 answers
IKImageBrowserView with background and wantsLayer
In my app I use IKImageBrowserView with background. If wantsLayer NO - all fine and IKImageBrowserView look like nice. But if I enabled wantsLayer (in parent view) the background in IKImageBrowserView is corrupt. (Sorry English is not my native…

user3229853
- 21
- 1
2
votes
3 answers
Observing NSUserDefaultsController not working when bound properties are set
Here's the setup: I have a subclass of IKImageBrowserView whose zoomValue property is bound to a key VFBrowserZoomValue in the shared NSUserDefaultsController. I have an NSSlider whose value binding is bound to the same key.
This works perfectly to…

Fraser Speirs
- 4,642
- 3
- 21
- 15
2
votes
1 answer
MACOSX - How to customize IKImageBrowserView to add a NSButton on each item?
I want to customize IKImageBrowserView so that i can add NSButton or other control on cell of IKImageBrowserView. I tried to cutomize IKBrowserViewCell class, but i did not get how and where i add NSbutton, So that it display on…

Surjeet Singh
- 11,691
- 2
- 37
- 54
2
votes
1 answer
Is it possible to print IKImageBrowserView In Cocoa programmatically?
I want to take print of IKImageBrowserView with (content) images. I tried the following code
if (code == NSOKButton) {
NSPrintInfo *printInfo;
NSPrintInfo *sharedInfo;
NSPrintOperation *printOp;
NSMutableDictionary…

Lion
- 872
- 1
- 17
- 43
2
votes
2 answers
QuickLook with IKImageBrowserView
I know IKImageBrowserView can be set to take control of the QuickLook panel, but how can I show that panel programmatically?
Thank you

user732274
- 1,069
- 1
- 12
- 28