Tagged Questions

6
votes
1answer
307 views

Core Animation image change in IKImageView?

Is there any way to animate (using one of the supplied Core Animations) an image change in IKImageView without resorting to using two independent IKImageViews upon a new image load?
3
votes
0answers
58 views

IKImageBrowserView lazy loading?

In order to work with the IKImageBrowserView, one must implement a datasource with the following methods – numberOfItemsInImageBrowser: – imageBrowser:itemAtIndex: This is not dissimilar to ...
2
votes
1answer
181 views

ImageKit errors and warnings when compiling with ARC

I'm trying to convert my project to ARC, but I'm using ImageKit in my project. Both the ARC refactoring tool and my own manual refactoring produce errors and warnings with ARC in the ImageKit header ...
2
votes
2answers
1k views

How to interpret trackpad pinch gestures to zoom IKImageBrowserView

I have an IKImageBrowserView that I want to be able to pinch-zoom using a multi-touch trackpad on a recent Mac laptop. The Cocoa Event Handling Guide, in the section Handling Gesture Events says: ...
1
vote
1answer
146 views

Selecting iPhoto images within a cocoa application

I was wondering what the best way of selecting photos from iPhoto within a cocoa application? Right now, the open file dialogue doesn't allow me to go into the iPhoto library. How can I allow the user ...
1
vote
1answer
197 views

Add background to IKImageView

I want to add a checkerboard background to an IKImageView for viewing transparent images. I am trying to set CALayer with checkboard image to IKImageView with message setOverlay:forType CFURLRef ...
1
vote
0answers
116 views

Is there a way to initialize ImageKit's IKSaveOptions to default to TIFF with LZW compression?

I'm using Mac OS X 10.6 SDK ImageKit's IKSaveOptions to add the file format accessory to an NSSavePanel using: - (id)initWithImageProperties:(NSDictionary *)imageProperties imageUTType:(NSString ...
1
vote
3answers
628 views

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 ...
1
vote
1answer
301 views

Telling IKImageBrowserView not to schedule preloading

For our rewrite of the open-source iMedia framework project (in use currently by dozens of developers), we are switching to IKImageBrowserView, and having a troubling time with caching. It appears ...
0
votes
1answer
51 views

IKImageBrowserView: how to display tooltip for every item?

I digged in documentation but didn't find how to do. How can I add tooltip for every item in IKImageBrowserView?
0
votes
1answer
72 views

How to enable dragging on specific items of an IKImageBrowserView?

I'm using an IKImageBrowserView for a mac application I'm currently developing and wants to enable dragging inside the IKImageBrowserView so I've used – setAllowsDroppingOnItems: but unfortunately ...
0
votes
0answers
64 views

IKImageBrowserView doesn't remember expanded state of groups

This is perhaps a silly question... Should IKImageBrowserView remember the expanded state of my groups across calls to reloadData or is that something I should be keeping track of myself in my ...
0
votes
1answer
238 views

IKImageBrowserView “--ImageKit Error: reloadData called in non main thread”

I am writing a Cocoa Mac app which uses an IKImageBrowserView. When I call the following: [imageBrowserView reloadData]; The Debugger Console prints this: --ImageKit Error: reloadData called in ...
0
votes
2answers
652 views

Another IKImageView Question: copying a region

I'm trying to use the select and copy feature of the IKImageView. If all you want to do is have an app with an image, select a portion and copy it to the clipboard, it's easy. You set the copy menu ...
0
votes
1answer
231 views

Changing how IKImageBrowserView indicates the drop position

I can make a single row IKImageBrowserView by setting the [imageBrowser setContentResizingMask:NSViewWidthSizable]; but in this case while i drag an image inside image browser to rearrange it, the ...