Re: IKImageBrowserView keeps scrolling to the bottom

2016-09-23 Thread Steve Mills
On Sep 23, 2016, at 15:05:38, James Crate wrote: > > I thought the same thing. I haven’t installed Sierra yet, so maybe it works > if you build with Xcode 8 on Sierra. For now, if you go back to Xcode 7 it > will should work like before, but I haven’t tried that yet either. I needed > Xcode 8

Re: IKImageBrowserView keeps scrolling to the bottom

2016-09-23 Thread James Crate
On Sep 23, 2016, at 1:35 PM, Steve Mills wrote: > > On Sep 23, 2016, at 12:21:56, James Crate wrote: >> >> I saw the same thing when I updated to Xcode 8 last week. A sample app with >> no subclassing displays the same behavior. I filed a radar with sample >> project as well. >> >> The docu

Re: IKImageBrowserView keeps scrolling to the bottom

2016-09-23 Thread Steve Mills
On Sep 23, 2016, at 12:21:56, James Crate wrote: > > I saw the same thing when I updated to Xcode 8 last week. A sample app with > no subclassing displays the same behavior. I filed a radar with sample > project as well. > > The documentation for IKImageBrowserView now says it is effectively

Re: IKImageBrowserView keeps scrolling to the bottom

2016-09-23 Thread James Crate
On Sep 23, 2016, at 1:01 PM, Steve Mills wrote: > > I just noticed that the most recent build of my app was scrolling the image > browser view constantly to the bottom. I can scroll up once it gets to the > bottom, but it then scrolls back down. I can change the sort order, but it > keeps scro

Re: IKImageBrowserView bug?

2016-03-23 Thread Graham Cox
> On 24 Mar 2016, at 1:38 PM, Graham Cox wrote: > > I could also subclass NSScrollView - this is probably my next approach - but > I’m hoping there’s an easier way. I need to see what is invoking the scroll > of the document (image browser) view. > OK, I’ve now done this and intercepted -re

Re: IKImageBrowserView bug?

2016-03-23 Thread Graham Cox
> On 23 Mar 2016, at 1:23 PM, Graham Cox wrote: > > Hi all, > > I just upgraded to 10.11.4 and XCode 7.3 and therefore the latest SDK. > Rebuilding my app, my one instance of IKImageBrowserVIew in my app has gone > haywire. Whenever I load new images into it, it scrolls constantly to the > b

Re: IKImageBrowserView, drawing on layers and retina display

2014-02-10 Thread Dragan Milić
Again replying to myself… On pon 10.02.2014., at 11.59, Dragan Milić wrote: > The remaining issue is that strings drawn on the layer (using standard string > drawing methods) still don't have antialiasing. This is also solved, perhaps it may help someone else to: https://developer.apple.com/l

Re: IKImageBrowserView, drawing on layers and retina display

2014-02-10 Thread Dragan Milić
Okay, replying to myself here… On pon 10.02.2014., at 10.30, Dragan Milić wrote: > I haven't done many things with CALayers in the past, so maybe I'm missing > some setting to make this work, but it doesn't look like that looking at that > class' public API. On the other hand I find it hard to

Re: IKImageBrowserView spinning animation on the Cell

2011-10-29 Thread Tom Hohensee
Create a CALayer with the spinning effects. and use the following IKImageBrowser cell Core Animation layer method. - (CALayer *)layerForType:(NSString *)type where NSString is a “Cell Layer Positions” type IKImageBrowserCellForegroundLayer. For the spinning effects layer have a look at http

Re: IKImageBrowserView

2011-08-09 Thread koko
I just saw another Apple example that showed dragging implementations required, this was not in the first example I saw. So I am doing the dragging stuff. Thanks. -koko On Aug 9, 2011, at 3:07 PM, Tom Hohensee wrote: > How are you handling the drag operation? > > Sent from my iPhone > > On

Re: IKImageBrowserView

2011-08-09 Thread Tom Hohensee
How are you handling the drag operation? Sent from my iPhone On Aug 9, 2011, at 2:49 PM, koko wrote: > I have implemented > > - (void) imageBrowser:(IKImageBrowserView *) view removeItemsAtIndexes: > (NSIndexSet *) indexes > > and > > - (BOOL) imageBrowser:(IKImageBrowserView *) aBrowser moveI

Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Julien Jalon
And you have an example: http://devworld.apple.com/mac/library/samplecode/ImageBrowserViewAppearance/index.html -- Julien On Mon, Feb 15, 2010 at 5:42 PM, Jens Alfke wrote: > > On Feb 15, 2010, at 7:18 AM, Ashley Clark wrote: > > > For objects that were saved in a NIB file -initWithFrame: is

Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Julien Jalon
SnowLeopard introduced a bunch of new public API to make customizing easier: On the view itself: - (void) setBackgroundLayer:(CALayer *) aLayer; - (void) setForegroundLayer:(CALayer *) aLayer; extern NSString * const IKImageBrowserGroupHeaderLayer; /* CALayer */ extern NSString

Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Jens Alfke
On Feb 15, 2010, at 7:18 AM, Ashley Clark wrote: > For objects that were saved in a NIB file -initWithFrame: is usually not > what's called to recreate them (there are some exceptions that I don't > remember off the top of my head). Since NIBs are essentially archives most of > the views store

Re: IKImageBrowserView & IKImageView subclasses not getting called

2010-02-15 Thread Ashley Clark
On Feb 3, 2010, at 7:27 PM, Charles Burnstagger wrote: > I subclass IKImageBrowserView & IKImageView overriding initWithFrame: & > drawRect: and sending the same messages to super in both cases. > > I've set them as the classes for the UI objects in my IB file, and as > IBOutlets in my window's

Re: IKImageBrowserView drop operation always highlighting a specific row

2010-01-29 Thread Tobias Jordan
Thomas, it's working now, easier than I thought: - (NSDragOperation)draggingUpdated:(id < NSDraggingInfo >)sender { [self setNeedsDisplay:YES]; if ([sender draggingSource] == self) return [super draggingEntered:sender]; return NSDragOperationCopy; } Thanks

Re: IKImageBrowserView drop operation always highlighting a specific row

2010-01-29 Thread Tobias Jordan
Hey Thomas, Didn't notice it was you, remember - the problem I had with my IKImageBrowserView and dragging files out of it? Thanks again for your help! I'm going to subclass my view now and see if I can get it to work. If so I'll post my solution here of course in case someone finds it usef

Re: IKImageBrowserView drop operation always highlighting a specific row

2010-01-29 Thread Thomas Goossens
There is no such method on 10.5 so in your case you would have to do everything at the NSView level by implementing the NSDraggingDestination protocol. So basically you'd have to - subclass the IKImageBrowserView - implement the needed methods from NSDraggingDestination (draggingEntered, dragging

Re: IKImageBrowserView drop operation always highlighting a specific row

2010-01-28 Thread Tobias Jordan
Hi Thomas, thanks for the information, didn't know there exists such a method but is there a way to do it like this on Mac OS X 10.5 Leopard? - Tobias On Jan 29, 2010, at 2:24 AM, Thomas Goossens wrote: Hi Tobias, The equivalent of setDropRow:dropOperation for the IKimageBrowserView is

Re: IKImageBrowserView drop operation always highlighting a specific row

2010-01-28 Thread Thomas Goossens
Hi Tobias, The equivalent of setDropRow:dropOperation for the IKimageBrowserView is - (void) setDropIndex:(NSInteger)index dropOperation:(IKImageBrowserDropOperation)operation; available on 10.6 -- Thomas On Jan 28, 2010, at 10:01 PM, Tobias Jordan wrote: > Hey guys, > > first off thank y

Re: IKImageBrowserView managing the number of columns manually

2009-12-21 Thread Thomas Goossens
Hi Nicolas, On Dec 20, 2009, at 12:21 PM, Nicolas Berloquin wrote: > Hi ! > > I'm using an IKImageBrowserView to show a series of image captures > and it works really well. I would like to be able to manage the number > of images shown in a row in a precise way, and I'd like to know if there > i

Re: IKImageBrowserView image quality changing with redraw

2009-12-08 Thread Adam Berger
This has so far only been tested on SnowLeopard. I'm going to divide this into two issues, since I'm not 100% sure they're related. 1) On redraw, a filtering is applied that changes the image quality. Are you seeing this change on first redraw from a large NSImage (rather than from a url to an im

Re: IKImageBrowserView image quality changing with redraw

2009-12-08 Thread Thomas Goossens
Hi Adam, Is this on Leopard or Snowleopard ? I just tried to load images from /System/Library/Desktop Pictures in an IKImageBrowserView using the NSImage representation. They appears just fine for me (SnowLeopard). > [Side note: I've seen reference to the prefetching behavior > of IKImageBrowse

Re: IKImageBrowserView image quality changing with redraw

2009-12-08 Thread Mike Abdullah
On 8 Dec 2009, at 00:01, Adam Berger wrote: > I'm trying to move from a custom view to an IKImageBrowserView in a project, > and running into a somewhat odd problem. Context: my IKImageBrowserItems are > IKImageBrowserNSImageRepresentationType, backed by a relatively > large (~600x800) NSImage. >

Re: IKImageBrowserView D&D with IKImageBrowserNSDataRepresentationType

2009-12-04 Thread Micha Fuhrmann
Ok, thanks again, so far so good. Now as I drag an image or multiple images it creates a thumb of the dragged item(s), but as I drag to the desktop there's no plus sign badge on the dragged items and as a drop on the desktop it doesn't accept. I guess what I need to get is a - (NSArray *)name

Re: IKImageBrowserView D&D with IKImageBrowserNSDataRepresentationType

2009-12-04 Thread Thomas Goossens
return NSDragOperationNone in the two methods below: - (NSDragOperation)draggingEntered:(id )sender - (NSDragOperation)draggingUpdated:(id )sender or invoke this during the setup of your IKImageBrowserView: registerForDraggedTypes:nil -- Thomas On Dec 4, 2009, at 3:44 PM, Micha Fuhrmann wrote:

Re: IKImageBrowserView D&D with IKImageBrowserNSDataRepresentationType

2009-12-04 Thread Micha Fuhrmann
Ha yes, I'm doing a from only. Now I've filled the pasteboard with my NSData objects for NSFilesPromisePboardType. Which methods should I implement if I don't want any drops enabled within the image browser but only to the finder? Any direction appreciated. On 4 déc. 2009, at 14:48, Thomas Goo

Re: IKImageBrowserView D&D with IKImageBrowserNSDataRepresentationType

2009-12-04 Thread Thomas Goossens
Hi Micha, Are you trying to drag from the IKImageBrowserView or into the IKImageBrowserView ? if from: you need to fill the pasteboard by implementing the datasource method: - (NSUInteger) imageBrowser:(IKImageBrowserView *) aBrowser writeItemsAtIndexes:(NSIndexSet *) itemIndexes toPasteboard:(

Re: IKImageBrowserView selection notification

2009-11-24 Thread Nick Zitzmann
On Nov 24, 2009, at 1:21 AM, Charles Burnstagger wrote: > How do I detect when the selection changes in a IKImageBrowserView? I didn't > see anything in the docs on that.

Re: IKImageBrowserView Dragging outside

2009-10-26 Thread Tobias Jordan
Hey Jonathan & Thomas, it's finally working and even more easier than I've thought: So I made a subclass of my IKImageBrowserView and added a new delegate method, the one's missing: // --- // -browserView:dropped

Re: IKImageBrowserView Dragging outside

2009-10-25 Thread jonat...@mugginsoft.com
On 24 Oct 2009, at 16:36, TFS - Tobias Jordan wrote: Thanks again Thomas and Jonathan. What you've written, Thomas, is indeed working as it should however I can't use it for my project since I am creating special folder structures when copying the files, e.g. Adobe Photoshop Files -> 2008-

Re: IKImageBrowserView Dragging outside

2009-10-24 Thread TFS - Tobias Jordan
Thanks again Thomas and Jonathan. What you've written, Thomas, is indeed working as it should however I can't use it for my project since I am creating special folder structures when copying the files, e.g. Adobe Photoshop Files -> 2008-10-20 -> MyPSFile.psd. Isn't there a way to get the fo

Re: IKImageBrowserView Dragging outside

2009-10-23 Thread Thomas Goossens
On Oct 23, 2009, at 9:15 PM, TFS - Tobias Jordan wrote: > Thanks for that, Thomas. The Problem I'm having is that the > IKImageBrowserView is just representing previews. So it's a file preview and > there's a path behind the preview to be copied when dragging out. > With the standard settings o

Re: IKImageBrowserView Dragging outside

2009-10-23 Thread TFS - Tobias Jordan
Thanks for that, Thomas. The Problem I'm having is that the IKImageBrowserView is just representing previews. So it's a file preview and there's a path behind the preview to be copied when dragging out. With the standard settings of the view, I'll get the preview image copied to the locatio

Re: IKImageBrowserView Dragging outside

2009-10-23 Thread Thomas Goossens
Hi Jordan, imageBrowser:writeItemsAtIndexes:toPasteboard: is indeed the way to go. Implement this method in your datasource and just fill the pasteboard with the info you want (Images, paths, urls, data...) for the indexes passed in arguments. Also if you feed the imageBrowser with paths or url

Re: IKImageBrowserView only horizontal scrolling

2009-07-15 Thread arri
Thomas, Thanks for the fast respons! Saves a lot of headaches. .arri On Wed, Jul 15, 2009 at 7:23 PM, Thomas Goossens wrote: > Hi Arri, > > This is a bug (fixed on SnowLeopard). > On Leopard, when the content resizing mask is set to NSViewWidthSizable (for > banners typically) only layouts with

Re: IKImageBrowserView only horizontal scrolling

2009-07-15 Thread Thomas Goossens
Hi Arri, This is a bug (fixed on SnowLeopard). On Leopard, when the content resizing mask is set to NSViewWidthSizable (for banners typically) only layouts with a single row are supported. -- Thomas On Jul 15, 2009, at 7:05 PM, arri wrote: Hi, This tip looks simple enough, and it works

Re: IKImageBrowserView only horizontal scrolling

2009-07-15 Thread arri
Hi, This tip looks simple enough, and it works to a certain extent. But moving the scaling-slider or resizing the window, results in very buggy display for me. This is both the case with my own prototype app, as with apple's Image Browser example code (set to use NSViewWidthSizable). Two screens

Re: IKImageBrowserView setSelectionIndex not selecting

2009-06-25 Thread Graham Cox
On 26/06/2009, at 2:19 AM, Richard Gutierrez wrote: NSArray* path = [NSArray arrayWithObject:url]; if (path) { [NSThread detachNewThreadSelector:@selector(addImagesWithPaths:) toTarget:self withObject:path]; } [imageBrowser setSelectionIndexes:[NSIndexSet indexSetWithIndex

Re: IKImageBrowserView setSelectionIndex not selecting

2009-06-25 Thread Ramakrishna Vavilala
You need to call [imageBrowser reloadData]. When you call setSelectionIndexes there need to be items in the list calling reloadData will ensure that there are items. On Thu, Jun 25, 2009 at 12:19 PM, Richard Gutierrez wrote: > I did place this in the awakeFromNib... I also tried placing it in > "

Re: IKImageBrowserView setSelectionIndex not selecting

2009-06-25 Thread Richard Gutierrez
I did place this in the awakeFromNib... I also tried placing it in "updateDatasource", "addImagesWithPath", and "addImagesWithPaths". All of the calls do not work. Here is my awakeFromNib code: - (void)awakeFromNib { images = [[NSMutableArray alloc] init]; importedImages = [[NSMutableAr

Re: IKImageBrowserView setSelectionIndex not selecting

2009-06-22 Thread Graham Cox
On 23/06/2009, at 10:08 AM, Richard Gutierrez wrote: I have been researching extensively on how to set an IKImageBrowserView's initial selection upon load to 0 index. Here is the call I am making: [imageBrowser setSelectionIndexes:[NSIndexSet indexSetWithIndex:0] byExtendingSelection:NO]

Re: IKImageBrowserView is not reloading data.

2009-05-12 Thread Kenny Carruthers
Peter, Excellent, that solved the issue. Much appreciated. Sincerely, Kenny On May 12, 2009, at 1:27 AM, peter.sch...@mac.com wrote: Hi Kenny, In your IKImageBrowserItem, you could implement: - (NSUInteger)imageVersion; Increasing this version and then calling IKImageBrowserView's reloadD

Re: IKImageBrowserView is not reloading data.

2009-05-12 Thread peter . schols
Hi Kenny, In your IKImageBrowserItem, you could implement: - (NSUInteger)imageVersion; Increasing this version and then calling IKImageBrowserView's reloadData should do the trick. Best wishes, Peter Peter Schols Orbicule http://www.macnification.com/ Date: Mon, 11 May 2009 01:25:58 -0

RE: IKImageBrowserView drag and drop/reordering when using core data [SOLVED]

2009-04-11 Thread jonat...@mugginsoft.com
Regarding this previous post of mine: http://www.cocoabuilder.com/archive/message/cocoa/2009/1/13/227642 The code listed in that previous posting contains an error which results in insidious behaviour: “EXC_BAD_ACCESS” sometimes generated when dragging within IKBrowserImageView I had omitte

Re: IKImageBrowserView crash

2009-04-09 Thread Bill Bumgarner
On Apr 8, 2009, at 12:36 PM, Ashley Clark wrote: Thread 0 Crashed: 0 GLEngine0x1e4daf17 glDeleteTextures_Exec + 23 1 libGL.dylib 0x941cc476 glDeleteTextures + 38 2 com.apple.imageKit 0x93aa4684 _deleteTextureForIKGLI

Re: IKImageBrowserView crash

2009-04-09 Thread jonat...@mugginsoft.com
I don't have a solution just a couple of suggestions. As GC is enabled you can try temporarily disabling the collector. Bracket the crashing code segment with: [[NSGarbageCollector defaultCollector] disable]; // crashing code [[NSGarbageCollector defaultCollector] enable]; Otherwise I can onl

Re: IKImageBrowserView - multiline labels

2009-02-07 Thread Rob Keniger
On 08/02/2009, at 11:40 AM, Eric Gorr wrote: I was wondering if anyone has used this control. I have a situation which it may be perfect for, but the three things I am not certain it is capable of is: 1. supporting in-place editing of the labels 2. supporting multi-line labels 3. using a s

Re: IKImageBrowserView drag and drop/reordering when using core data [SOLVED]

2009-01-13 Thread jonat...@mugginsoft.com
IKImageBrowserDataSource Protocol has the answer. For non file path represented images we need to implement - imageBrowser:writeItemsAtIndexes:toPasteboard: /* write images to paste board need for dragging of non path represented images */ - (NSUInteger) imageBrowser:(IKImageBrowserView *

Re: IKImageBrowserView and the View Hierarchy

2009-01-10 Thread Jeffrey J . Early
I finally came up with a simple work around to this problem, one which actually works better for my purposes: instead of adding a view to the window's view hierarchy, add a new child window to the window. The view ordering then works as expected and doesn't break (or get broken by) IKImage

Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread douglas welton
Sandeep, Sorry, I misread your question. I have an application that implements dragging from an IKImageBrowserView and when I was testing it initially, I experienced a similar issue (no dragging being initiated on mouse down) when I forgot to connect the datasource outlet on my IKImageBrow

Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread Thomas Goossens
Sandeep, If your datasource returns paths, your view should be automatically a drag source. If your datasource returns images, I think the only thing you have to do is to implement - (NSUInteger) imageBrowser:(IKImageBrowserView *) aBrowser writeItemsAtIndexes:(NSIndexSet *) itemIndexes t

Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread Sandeep Chayapathi
I did try the -setDraggingDestinationDelegate: , but it is meant for a drag destination and not drag source. From the documentation (here: http://developer.apple.com/documentation/Cocoa/Conceptual/DragandDrop/Concepts/dragsource.html#//apple_ref/doc/uid/2976-CJBFBADF ) I have to implement dr

Re: IKImageBrowserView and mouseDragged event

2008-11-28 Thread douglas welton
Sandeep, Did you set the dragging destination delegate using - setDraggingDestinationDelegate:? more info here: regar

Re: IKImageBrowserView with NSArrayController bindings

2008-11-13 Thread Matt Gough
On 13 Nov 2008, at 11:25, Florian Soenens wrote: NSLog([[arrayController selectionIndexes] description]); Not related to your problem, but this style of NSLog has a potential pitfall if the description method were to return a string with any of the supported formatting sequences i

Re: IKImageBrowserView with NSArrayController bindings

2008-11-13 Thread Florian Soenens
One more thing on this, if i bind an nstableview to my NSArrayController (to just display the path to the image object) the arrayController does reflect the changes, like so: - (void)tableViewSelectionDidChange:(NSNotification *)aNotification { NSLog([[arrayController selectionIndexes

Re: IKImageBrowserView with NSArrayController bindings

2008-11-13 Thread Florian Soenens
I'm sorry, i was typing this out of my head in mail. Here's what i did: - (void) imageBrowserSelectionDidChange:(IKImageBrowserView *) aBrowser { [arrayController setSelectionIndexes:[aBrower selectionIndexes]]; NSLog([[arrayController selectionIndexes] description]); } Any ideas

Re: IKImageBrowserView with NSArrayController bindings

2008-11-13 Thread Quincey Morris
On Nov 13, 2008, at 01:29, Florian Soenens wrote: - (void) imageBrowserSelectionDidChange:(IKImageBrowserView *) aBrowser { NSLog([[arrayController selectedIndex] description]); } The problem is that the NSArrayController always logs the same index, no mather what item i select in d

Re: IKImageBrowserView only horizontal scrolling

2008-10-27 Thread Ralph Manns
Hello Thomas, thanks you, works great. The documentation says setContentResizingMask determines how the receiver resize its content when zooming... Thanks, Ralph. 2008/10/27 Thomas Goossens <[EMAIL PROTECTED]> > Hi Ralph, > > Use setContentResizingMask: with NSViewWidthSizable so that the > IKIm

Re: IKImageBrowserView only horizontal scrolling

2008-10-27 Thread Thomas Goossens
Hi Ralph, Use setContentResizingMask: with NSViewWidthSizable so that the IKImageBrowserView resizes its content horizontally when zooming/ resizing... -- Thomas On Oct 27, 2008, at 2:06 PM, Ralph Manns wrote: Hello, is there a away to limit the number of rows to 1, so that IKImageBrows

Re: IKImageBrowserView is bonkers

2008-06-06 Thread Adam R. Maxwell
On Jun 6, 2008, at 8:13 PM, Ken Ferry wrote: On Fri, Jun 6, 2008 at 4:16 PM, Adam R. Maxwell <[EMAIL PROTECTED]> wrote: On Jun 6, 2008, at 3:57 PM, j o a r wrote: The images probably have an embedded thumbnail / preview that is not updated when you rotate the main image using "jpegtran". M

Re: IKImageBrowserView is bonkers

2008-06-06 Thread Ken Ferry
On Fri, Jun 6, 2008 at 4:16 PM, Adam R. Maxwell <[EMAIL PROTECTED]> wrote: > > On Jun 6, 2008, at 3:57 PM, j o a r wrote: > >> >> On Jun 6, 2008, at 3:50 PM, Randall Meadows wrote: >> >>> The images are captured from a digital camera, which is oriented in a >>> portrait fashion. Once downloaded fr

Re: IKImageBrowserView is bonkers

2008-06-06 Thread Adam R. Maxwell
On Jun 6, 2008, at 3:57 PM, j o a r wrote: On Jun 6, 2008, at 3:50 PM, Randall Meadows wrote: The images are captured from a digital camera, which is oriented in a portrait fashion. Once downloaded from the camera, the images are rotated (using jpegtran) to a "normal" orientation, the EX

Re: IKImageBrowserView is bonkers

2008-06-06 Thread j o a r
On Jun 6, 2008, at 3:50 PM, Randall Meadows wrote: The images are captured from a digital camera, which is oriented in a portrait fashion. Once downloaded from the camera, the images are rotated (using jpegtran) to a "normal" orientation, the EXIF is edited to match (using exiftool, since

Re: IKImageBrowserView spacing and contextual menus

2008-04-19 Thread thomas goossens
Hi Yann, On Apr 19, 2008, at 10:51 AM, Yann Disser wrote: Is there a way to change the spacing of the images in an IKImageBrowserView? In InterfaceBuilder? No, the only thing you can do to impact the cell-spacing is to use setCellSize and give a non square size (a size taller than larger=>

Re: IKImageBrowserView Title & Subtitle Woes

2008-04-13 Thread Thaddeus Cooper
Thanks very much Thomas -- it works now :-) Thaddeus O. Cooper ([EMAIL PROTECTED]) On Apr 13, 2008, at 1:50 PM, thomas goossens wrote: Hi Thaddeus, To change the title attributes, use setValue:forKey with the key "IKImageBrowserCellsTitleAttributesKey" and pass a dictionary that contain

Re: IKImageBrowserView Title & Subtitle Woes

2008-04-13 Thread thomas goossens
Hi Thaddeus, To change the title attributes, use setValue:forKey with the key "IKImageBrowserCellsTitleAttributesKey" and pass a dictionary that contains the text attributes. To get the list of keys for the attribute dictionary see the section "standard attributes" of the following page:

Re: IKImageBrowserView crash when providing it lots lots of pictures?

2008-03-07 Thread Julien Jalon
IKImageBrowserView is known to support something like 250,000 images so I'd look somewhere else. Providing the full crash stack trace might help understand what object you (or some other place) is likely to be over-released. Also, enabling NSZombie might help you debugging the problem. --