Re: CALayer-hosting view and child NSView's

2010-07-01 Thread Scott Anguish
A layer-hosting view can’t have subviews, which is what it sounds like you want to do in the second to last paragraph. Why can’t you just use layer-backed views? You get the controls, you can still do animation using the animation proxy and the other animation methods. On Jun 30, 2010, at 5:27

Re: CALayer-hosting view and child NSView's

2010-07-01 Thread Oleg Krupnov
Right, I want to add subviews into a layer-hosting view. I want to do this, in particular, because I want the "cells" in my custom view to drop shadows. If I implement cells like simple subviews and use layer-backed view, I can't seem to do it, can I? I have performed an experiment right now and

Re: How to retrieve a vCard during an ISyncSession?

2010-07-01 Thread unixo
My need is to retrieve a vCard given a ISyncChange record identifier. Does anyone know if there is a relationship between the two IDs? Thanks in advance On 30/giu/2010, at 08.34, Laurent Cerveau wrote: > Why would you want to retrieve the vCard? The sync engine can give you all > attributes for

Re: CALayer-hosting view and child NSView's

2010-07-01 Thread Scott Anguish
On Jul 1, 2010, at 3:14 AM, Oleg Krupnov wrote: > Right, I want to add subviews into a layer-hosting view. > You can’t. > I want to do this, in particular, because I want the "cells" in my > custom view to drop shadows. If I implement cells like simple subviews > and use layer-backed view, I c

Re: CALayer-hosting view and child NSView's

2010-07-01 Thread Oleg Krupnov
Thanks Scott, To draw shadows around cells, I would have to draw outside the cell view's frame, i.e. on the parent view or sibling cells, respecting the z-order. Is this possible? Also, the cells in my view can be moving over each other with an animation. When the cell view is moved using setFram

CAGradientLayer with horizontal gradient

2010-07-01 Thread MB
When you create a CAGradientLayer, the gradient is vertical. How can you get the gradient to go horizontal? I've tried using startPoint and endPoint, but that doesn't seem to do the trick. MB ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Pl

Re: NSString ambiguities

2010-07-01 Thread Ariel Feinerman
I wish to get the strings from file, exclude some strings and empty strings and write them to file, so do you sure these methods are for that? Can you explain what you suggest by given an example? I take care of backward compatibility with 10.5 therefore 10.6 blocks is out . Thank you. 2010/7/1

Error when closing window with IKImageBrowserView in it

2010-07-01 Thread Gideon King
Hi, I have a panel which has an IKImageKitBrowser in it, and when I close the window, if I have any images selected, I get this message: : kCGErrorInvalidConnection: CGSGetSurfaceBounds: Invalid connection : kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are lo

Capturing output from another task with elevated privilages

2010-07-01 Thread Eric Hoaglin
Hi all, I have the following code: http://www.pasteit4me.com/763005 I'm trying to capture the output of the task that I run. and from what I understand, if you want to do so, you pass a FILE* to AuthorizationExecuteWithPrivileges and then just read it as a normal file (which you can see from li

Re: CALayer-hosting view and child NSView's

2010-07-01 Thread Kyle Sluder
On Jul 1, 2010, at 12:56 AM, Oleg Krupnov wrote: > Thanks Scott, > > To draw shadows around cells, I would have to draw outside the cell > view's frame, i.e. on the parent view or sibling cells, respecting the > z-order. Is this possible? Again, layer-hosting views can't have subviews. You will

Re: CAGradientLayer with horizontal gradient

2010-07-01 Thread Kyle Sluder
On Jul 1, 2010, at 1:09 AM, MB wrote: > When you create a CAGradientLayer, the gradient is vertical. How can you get > the gradient to go horizontal? I've tried using startPoint and endPoint, but > that doesn't seem to do the trick. But that's indeed how you do it. Care to post your code? --K

Re: CAGradientLayer with horizontal gradient

2010-07-01 Thread MB
I realized I was trying to position the start and end point using the layer coordinate system, instead I should use relative values between 0.0 and 1.0. gradient.startPoint = CGPointMake(0, 0.5); gradient.endPoint = CGPointMake(1.0, 0.5); Like this it works. Thanks for the response. On 1 jul

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Matt Neuburg
On Wed, 30 Jun 2010 18:02:38 -0400, Laurent Daudelin said: >On Jun 30, 2010, at 17:48, Greg Parker wrote: > >> On Jun 30, 2010, at 2:42 PM, Laurent Daudelin wrote: >>> Yes, I know that, but can you send an instance method to a class object? >> >> Yes, you can. Every class object is itself an inst

KVO question

2010-07-01 Thread Rainer Standke
Hello all, is it possible to determine if one object is observing another? Specifically, I'd like one object to ask another "are you observing me?". That way I could determine if I need to remove that observer before I let go of the observed object... Thanks, Rainer___

Re: Capturing output from another task with elevated privilages

2010-07-01 Thread Ken Thomases
On Jul 1, 2010, at 9:37 AM, Eric Hoaglin wrote: > I'm trying to capture the output of the task that I run. and from what I > understand, if you want to do so, you pass a FILE* > to AuthorizationExecuteWithPrivileges and then just read it as a normal file > (which you can see from lines 29-45 >

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Michael Ash
On Wed, Jun 30, 2010 at 5:44 PM, Dave Carrigan wrote: > > On Jun 30, 2010, at 2:35 PM, Laurent Daudelin wrote: > >> Well, isn't -respondsToSelector: an instance method? > > > if ([[Someclass class] respondsToSelector:@selector(classSelector)]) { >        // yup > } An extremely minor nitpick: the

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Dave DeLong
For more information: http://stackoverflow.com/questions/3107213 Dave On Jul 1, 2010, at 10:05 AM, Michael Ash wrote: > On Wed, Jun 30, 2010 at 5:44 PM, Dave Carrigan wrote: >> >> On Jun 30, 2010, at 2:35 PM, Laurent Daudelin wrote: >> >>> Well, isn't -respondsToSelector: an instance method?

Re: Capturing output from another task with elevated privilages

2010-07-01 Thread Kevin Wojniak
I may be wrong, but I believe AEWP only captures stdout, not stderr, so you could check for that. On Jul 1, 2010, at 7:37 AM, Eric Hoaglin wrote: > Hi all, > > I have the following code: > http://www.pasteit4me.com/763005 > > I'm trying to capture the output of the task that I run. and from w

Re: KVO question

2010-07-01 Thread Kyle Sluder
On Jul 1, 2010, at 8:26 AM, Rainer Standke wrote: > Hello all, > > is it possible to determine if one object is observing another? Specifically, > I'd like one object to ask another "are you observing me?". That way I could > determine if I need to remove that observer before I let go of the o

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Michael Ash
On Thu, Jul 1, 2010 at 12:05 PM, Michael Ash wrote: > An extremely minor nitpick: the use of +class here is necessary. Of course I meant to write that the use of +class here is UNnecessary. Sigh. Mike ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.

Re: Error when closing window with IKImageBrowserView in it

2010-07-01 Thread Nick Zitzmann
On Jul 1, 2010, at 7:00 AM, Gideon King wrote: > : kCGErrorInvalidConnection: CGSGetSurfaceBounds: Invalid connection > : kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch > errors as they are logged. > : kCGErrorInvalidConnection: CGSGetSurfaceBounds: Invalid connection [...] > H

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Kyle Sluder
On Jul 1, 2010, at 9:14 AM, Michael Ash wrote: > On Thu, Jul 1, 2010 at 12:05 PM, Michael Ash wrote: >> An extremely minor nitpick: the use of +class here is necessary. > > Of course I meant to write that the use of +class here is UNnecessary. Sigh. And it can actually get you into trouble. +c

Re: Error when closing window with IKImageBrowserView in it

2010-07-01 Thread Dave Fernandes
I've seen the same error message logged, but I've never narrowed the cause down enough to file a bug report. What's the workaround? On 2010-07-01, at 12:29 PM, Nick Zitzmann wrote: > > On Jul 1, 2010, at 7:00 AM, Gideon King wrote: > >> : kCGErrorInvalidConnection: CGSGetSurfaceBounds: Invalid

Re: Error when closing window with IKImageBrowserView in it

2010-07-01 Thread Nick Zitzmann
On Jul 1, 2010, at 10:36 AM, Dave Fernandes wrote: > I've seen the same error message logged, but I've never narrowed the cause > down enough to file a bug report. What's the workaround? If you order the window out instead of closing it, then IKImageBrowserView will quit squawking. The window

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Jonathon Kuo
On Jul 1, 2010, at 7:56 AM, Matt Neuburg wrote: > "Instance methods defined in a root class can be performed both by instances > and by class objects. Therefore, all class objects have access to the > instance methods defined in the root class." Not that it would generally be USEFUL to do so, sin

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Kyle Sluder
On Jul 1, 2010, at 9:42 AM, Jonathon Kuo wrote: > On Jul 1, 2010, at 7:56 AM, Matt Neuburg wrote: > >> "Instance methods defined in a root class can be performed both by instances >> and by class objects. Therefore, all class objects have access to the >> instance methods defined in the root cla

Re: CoreData and undo/redo : how to add a managed object with attributes already set in the undo/redo stack ?

2010-07-01 Thread Jerry Krinock
On 2010 Jun 29, at 13:47, Sean McBride wrote: > I don't believe that's the right pattern. In awakeFromInsert/Fetch, one > should be using primitive setters. The docs say "..." You're correct, Sean. I thought I got that pattern from some Apple sample code, but I can't find it now. Use of p

how to set custom icon folder to invisible?

2010-07-01 Thread Valerio Schiavoni
Hello everyone, i'm using the code given here: http://www.macgeekery.com/gspot/2007-02/setting_an_icon_from_the_cli to set a custom icon folder. It works fine, but when i do a ls -l inside the folder, i see: ls -l total 640 -rw-r--r--@ 1 root admin0 1 Lug 10:14 Icon? drwxrwxr-x 7 root

redraw weirdness (setFrameSize in drawRect)

2010-07-01 Thread Stefan Jung
I have a little program that loads data, converts them and then displays these data in a custom view. There are no errors or warnings. If the data are scaled into the view, everything works as expected. Now I wanted to use a scroll view instead of scaling on the horizontal axis. I put [self se

Re: how to set custom icon folder to invisible?

2010-07-01 Thread Kyle Sluder
On Thu, Jul 1, 2010 at 1:18 AM, Valerio Schiavoni wrote: > How can I change the code so that the Icon? file is invisible? The file is named "Icon\r". It doesn't begin with a dot, therefore ls will find it. That can't be changed. --Kyle Sluder ___ Coco

Re: redraw weirdness (setFrameSize in drawRect)

2010-07-01 Thread Kyle Sluder
On Thu, Jul 1, 2010 at 2:41 AM, Stefan Jung wrote: > Now I wanted to use a scroll view instead of scaling on the horizontal axis. > I put > > [self setFrameSize:NSMakeSize(numberOfDataPoints+1, height)]; > > into the drawRect: method. (May be a logical error) Yes, this is an error. Resizing yours

Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Rainer Standke
At the bottom of each finder window there is a 'path' display that indicates the path to the directory represented by the window. I'd like to be able to convert a path like this one: 'file://localhost/Users/rainer/Desktop/S&S%20material/hidden/' to some like: 'MacHD/Users/rainer/Desktop/S&S mat

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Jonathon Kuo
On Jul 1, 2010, at 9:49 AM, Kyle Sluder wrote: > On Jul 1, 2010, at 9:42 AM, Jonathon Kuo > wrote: > >> On Jul 1, 2010, at 7:56 AM, Matt Neuburg wrote: >> >>> "Instance methods defined in a root class can be performed both by instances >>> and by class objects. Therefore, all class objects ha

Re: KVO question

2010-07-01 Thread Rainer Standke
I have a core data app where I don't necessarily know when managed objects go away, as in: become faults, will be deleted etc.. I also need to add the observer to the managed object in awakeFromFetch, but that gets not only called upon opening an existing object, but also later on when fetches a

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Kevin Wojniak
Use -[NSURL path] to get the unix-style path format. On Jul 1, 2010, at 10:29 AM, Rainer Standke wrote: > At the bottom of each finder window there is a 'path' display that indicates > the path to the directory represented by the window. I'd like to be able to > convert a path like this one:

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Jean-Daniel Dupas
Le 1 juil. 2010 à 19:30, Jonathon Kuo a écrit : > > On Jul 1, 2010, at 9:49 AM, Kyle Sluder wrote: > >> On Jul 1, 2010, at 9:42 AM, Jonathon Kuo >> wrote: >> >>> On Jul 1, 2010, at 7:56 AM, Matt Neuburg wrote: >>> "Instance methods defined in a root class can be performed both by

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Michael Ash
On Thu, Jul 1, 2010 at 1:30 PM, Jonathon Kuo wrote: > > On Jul 1, 2010, at 9:49 AM, Kyle Sluder wrote: > >> On Jul 1, 2010, at 9:42 AM, Jonathon Kuo >> wrote: >> >>> On Jul 1, 2010, at 7:56 AM, Matt Neuburg wrote: >>> "Instance methods defined in a root class can be performed both by

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Mike Abdullah
NSPathControl Sent from my iPad On 1 Jul 2010, at 18:29, Rainer Standke wrote: > At the bottom of each finder window there is a 'path' display that indicates > the path to the directory represented by the window. I'd like to be able to > convert a path like this one: > 'file://localhost/User

Re: class_respondsToSelector() in runtime.h?

2010-07-01 Thread Kyle Sluder
On Thu, Jul 1, 2010 at 10:30 AM, Jonathon Kuo wrote: > Interesting... so what happens at runtime if a class object invokes an > instance method that accesses instance variables? Exception? Assertion? Seg > fault? "Invoke" is an inaccurate word. Let's use the proper term, "send a message." The s

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Ken Thomases
On Jul 1, 2010, at 12:33 PM, Kevin Wojniak wrote: > On Jul 1, 2010, at 10:29 AM, Rainer Standke wrote: > >> At the bottom of each finder window there is a 'path' display that indicates >> the path to the directory represented by the window. I'd like to be able to >> convert a path like this one

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Rainer Standke
That helps, to get rid of the 'file://localhost' part. What about the addition of the drive name? Thanks, Rainer On Jul 1, 2010, at 10:33 , Kevin Wojniak wrote: > Use -[NSURL path] to get the unix-style path format. > > > On Jul 1, 2010, at 10:29 AM, Rainer Standke wrote: > >> At the bottom

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Laurent Daudelin
Didn't you read the message from Ken Thomases about using [NSFileManager componentsToDisplayForPath:]? I think that's what you want to use. -Laurent. -- Laurent Daudelin AIM/iChat/Skype:LaurentDaudelin http://www.nemesys-soft.com/ Logiciels Nemesys Software

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Tony Romano
NSFileManager's mountedVolumeURLsIncludingResourceValuesForKeys:options will give you the names of the volumes. Use this plus the path to build your own version of the a display string. Remember to use the localized names. However, as Mike suggested, if you are displaying this in the UI, u

Re: KVO question

2010-07-01 Thread Matt Neuburg
On Thu, 1 Jul 2010 08:26:00 -0700, Rainer Standke said: >Hello all, > >is it possible to determine if one object is observing another? observationInfo doesn't do this? m. -- matt neuburg, phd = m...@tidbits.com, A fool + a tool + an autorelease pool = cool! Apple

Re: KVO question

2010-07-01 Thread Keary Suska
On Jul 1, 2010, at 11:30 AM, Rainer Standke wrote: > I have a core data app where I don't necessarily know when managed objects go > away, as in: become faults, will be deleted etc.. I also need to add the > observer to the managed object in awakeFromFetch, but that gets not only > called upon

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Matt Neuburg
On Thu, 1 Jul 2010 10:29:17 -0700, Rainer Standke said: >At the bottom of each finder window there is a 'path' display that indicates the path to the directory represented by the window. I'd like to be able to convert a path like this one: 'file://localhost/Users/rainer/Desktop/S&S%20material/hidd

Re: Finder-like conversion of a fileURL to 'user-friendly' path

2010-07-01 Thread Rainer Standke
What I was looking for was this: -[NSFileManager componentsToDisplayForPath:] Thanks, Ken. Rainer On Jul 1, 2010, at 10:29 , Rainer Standke wrote: > At the bottom of each finder window there is a 'path' display that indicates > the path to the directory represented by the window. I'd like to

Does a Core Animation Runtime Player/Editor exist?

2010-07-01 Thread colo
I am looking for a realtime editing window tool like a script console that will display Obj-C Core Animation instructions. Just like Processing and it's many variants Node Box Ruby etc. Or like Quartz Composer but pure code not nodes. Can Quartz Composer take Obj-C Code in realtime? Or is there a

Subclass UIScrollView or compose?

2010-07-01 Thread Rick Mann
I'm developing a custom scrolling view, and I could either subclass UIScrollView, or subclass UIView and drop it into a UIScrollView in IB. I prefer the former approach, because it's more straightforward when using the view (which we use in many places). However, the only way to update the view

Re: Subclass UIScrollView or compose?

2010-07-01 Thread Luke the Hiesterman
If you use a UIViewController, then dropping your custom view into UIScrollView in IB should be completely straightforward for all your uses. Luke On Jul 1, 2010, at 3:29 PM, Rick Mann wrote: > I'm developing a custom scrolling view, and I could either subclass > UIScrollView, or subclass UIVi

Core Data : Save As : Object temporarily missing in fetch results

2010-07-01 Thread Jerry Krinock
I'm debugging a problem with Save As in a Core Data document, and I'm not sure if the following is part of the main show, or a sideshow. A document contains only one object in a given entity. I've written a little debugger method which simply fetches all objects of a given entity and logs the

Re: Subclass UIScrollView or compose?

2010-07-01 Thread Rick Mann
I don't use a UIViewController. That is in this case, the view controllers will be provided by others who just want to use my view. Currently my view has properties that must be set for displaying data, but I may switch that to use a data source model like UITableView. I know it's no problem to

Re: Subclass UIScrollView or compose?

2010-07-01 Thread Luke the Hiesterman
It just sounds like trying to subclass UIScrollView is overkill for the problem you're trying to solve. What you want is a custom view inside a UIScrollView and be able to provide the whole view hierarchy as an object for consumption. You don't require special scrollview behavior. If you don't w

Re: Capturing output from another task with elevated privilages

2010-07-01 Thread Eric Hoaglin
That output is from standard out as the output is "Syntax OK" which I know is standard out... On Jul 1, 2010, at 9:10 AM, Kevin Wojniak wrote: > I may be wrong, but I believe AEWP only captures stdout, not stderr, so you > could check for that. Regards, Eric Hoaglin GryphonClaw Software http:

set defaults in another application?

2010-07-01 Thread Angelo Chen
Hi, In application A, I use following code to set some settings: NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];NSData *defaultSettings = [defaults objectForKey : EXPORT_SETTINGS]; ExportSettings *es = [[ExportSettings alloc] init];NSData *settings = [es getExportSettings: defau

Re: set defaults in another application?

2010-07-01 Thread koko
NSUserDefaults* dflts = [NSUserDefaults standardUserDefaults]; NSDictionary* dict = [dflts persistentDomainForName:@"com.company.applicationA"]; On Jul 1, 2010, at 6:49 PM, Angelo Chen wrote: Hi, In application A, I use following code to set some settings: NSUserDefaults *defau

Re: set defaults in another application?

2010-07-01 Thread Kyle Sluder
On Thu, Jul 1, 2010 at 5:49 PM, Angelo Chen wrote: > Hi, > In application A, I use following code to set some settings: > NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];NSData > *defaultSettings = [defaults objectForKey : EXPORT_SETTINGS]; > ExportSettings *es = [[ExportSettings

Re: set defaults in another application?

2010-07-01 Thread koko
forget the set part: [dflts setPersistentDomain:[NSDictionary dictionaryWithObjects:objects forKeys:keys] forName:@"com.company.applicationA"]; On Jul 1, 2010, at 6:49 PM, Angelo Chen wrote: Hi, In application A, I use following code to set some settings: NSUserDefaults *defaults = [NSUser

Re: [KINDA SOLVED] Core Data : Save As : Object temporarily missing...

2010-07-01 Thread Jerry Krinock
On 2010 Jul 01, at 15:38, I wrote: > I'm debugging a problem with Save As in a Core Data document... Yeah, I know, that original post was a long shot. I fixed the problem but still don't understand it. The "Save As" operation I was debugging is actually a home-made one which also deletes the o

Using NSImage to render the view

2010-07-01 Thread Tony Romano
I have a view who's bounding rectangle has been normalize to make drawing a grid easier. It' bounds is set to ~1x1. Currently I can draw the grid and what ever curve I want just fine. What I am trying to do is draw into a NSImage and render it in the view and cache the image so I can also sa

Re: Using NSImage to render the view

2010-07-01 Thread Graham Cox
On 02/07/2010, at 11:29 AM, Tony Romano wrote: > I have a view who's bounding rectangle has been normalize to make drawing a > grid easier. It' bounds is set to ~1x1. Currently I can draw the grid and > what ever curve I want just fine. What I am trying to do is draw into a > NSImage and ren

Re: Using NSImage to render the view

2010-07-01 Thread Tony Romano
Thanks for the tip. I figured it was too good to be true that the image would scale. Thinking about it, the class hierarchy only shows NSObject, I should have looked there to know for sure. I'm not tied to this method, it just works nicely. I'll covert the coordinates to the view's bounding

Re: Error when closing window with IKImageBrowserView in it

2010-07-01 Thread Dave Fernandes
Hmmm. I still can't get it to happen reproducibly, but the workaround, if I understand correctly would leek resources in a document-based app, would it not? When this does happen, it is when I close a document. On 2010-07-01, at 12:41 PM, Nick Zitzmann wrote: > > On Jul 1, 2010, at 10:36 AM, D

Re: NSString ambiguities

2010-07-01 Thread Jens Alfke
On Jul 1, 2010, at 4:02 AM, Ariel Feinerman wrote: > I wish to get the strings from file, exclude some strings and empty strings > and write them to file, so do you sure these methods are for that? Yup, they should work for that. They will help you iterate over the lines in the contents, regard

Re: Error when closing window with IKImageBrowserView in it

2010-07-01 Thread Nick Zitzmann
On Jul 1, 2010, at 9:41 PM, Dave Fernandes wrote: > Hmmm. I still can't get it to happen reproducibly, but the workaround, if I > understand correctly would leek resources in a document-based app, would it > not? Perhaps. Then you could try removing the image browser from its superview instea

horizontal radio group

2010-07-01 Thread Angelo Chen
Hi, radio group created in Interface builder is vertical, how  to set it horizontal? example, two radio buttons in one line? Thanks, a.c. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments

Re: horizontal radio group

2010-07-01 Thread Kyle Sluder
On Thu, Jul 1, 2010 at 11:05 PM, Angelo Chen wrote: > Hi, > radio group created in Interface builder is vertical, how  to set it > horizontal? example, two radio buttons in one line? Thanks, > a.c. Please read the documentation before posting to the list. --Kyle Sluder _

Re: horizontal radio group

2010-07-01 Thread Ken Thomases
On Jul 2, 2010, at 1:05 AM, Angelo Chen wrote: > radio group created in Interface builder is vertical, how to set it > horizontal? example, two radio buttons in one line? Thanks, A group of radio buttons is really an NSMatrix. The way to change the number of rows and columns in a matrix is to

Re: Error when closing window with IKImageBrowserView in it

2010-07-01 Thread Gideon King
I have tested using the orderOut: way of working around this issue, and it works for me. I will still file a bug report on the issue. Gideon On 02/07/2010, at 3:48 PM, Nick Zitzmann wrote: > > On Jul 1, 2010, at 9:41 PM, Dave Fernandes wrote: > >> Hmmm. I still can't get it to happen reproduc