Re: Drawing an overbar on text?

2013-04-03 Thread Rick Mann
On Apr 3, 2013, at 22:12 , Kyle Sluder wrote: > This is probably your best bet. Alas, I tried it, and I get a broken bar of varying height (depends on each glyph). -- Rick ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not p

Re: Drawing an overbar on text?

2013-04-03 Thread Kyle Sluder
On Apr 3, 2013, at 10:00 PM, Rick Mann wrote: > I suppose I could use the combining Unicode character. This is probably your best bet. --Kyle Sluder ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderato

Drawing an overbar on text?

2013-04-03 Thread Rick Mann
Is there anyway to draw an overbar or vinculum over text in an NSString or NSAttributedString? How about with Core Text? I suppose I could use the combining Unicode character. An overbar is a solid single line over a range of glyphs: http://en.wikipedia.org/wiki/Overline Thanks, -- Rick

Defaults not stored

2013-04-03 Thread Steve Mills
My screensaver follows examples I've seen as far as creating its defaults in its initWithFrame method: ScreenSaverDefaults*defaults = [ScreenSaverDefaults defaultsForModuleWithName:MyModuleName]; // Register our default values: fileMan = [[NSFileManager alloc] init];

Re: NSOpenPanel not showing iCloud

2013-04-03 Thread Kevin Perry
At the moment, the only open panel that gets the iCloud treatment is the one created by -[NSDocumentController openDocument:] or -[NSDocumentController beginOpenPanelWithCompletionHandler:]. -KP On Apr 3, 2013, at 8:29 PM, Kurt Sutter wrote: > Dear all > > We are trying to make our applicati

NSOpenPanel not showing iCloud

2013-04-03 Thread Kurt Sutter
Dear all We are trying to make our application iCloud savvy. We have sandboxed it, and we have enabled iCloud in the Xcode target settings. The application uses NSDocument-derived documents. We are using the latest public release of Mac OS 10.8 The save dialog boxes show iCloud as expected, a

Re: UIView final frame after device rotation

2013-04-03 Thread Markus Spoettl
On 4/3/13 6:42 PM, Quincey Morris wrote: bounds and center are correct at all times. However, I need the view's frame in screen coordinates because I'm positioning an independent overlay window, not a subview. Since the transformation messes with -convertRect:from/toView: in my view hierarchy, I

Re: UIView final frame after device rotation

2013-04-03 Thread Quincey Morris
On Apr 3, 2013, at 00:16 , Markus Spoettl wrote: > bounds and center are correct at all times. However, I need the view's frame > in screen coordinates because I'm positioning an independent overlay window, > not a subview. Since the transformation messes with -convertRect:from/toView: > in my

Re: Providing a Service without activating an app

2013-04-03 Thread Andy Lee
On Apr 3, 2013, at 3:27 AM, Andy Lee wrote: > How did everybody else learn how to write a .service? To answer my own question, I see now chapters on the subject in a couple of the older books on my shelves. --Andy ___ Cocoa-dev mailing list (Coco

Re: Providing a Service without activating an app

2013-04-03 Thread Andy Lee
On Apr 2, 2013, at 4:43 PM, Kevin Callahan wrote: > So, basically, my solution was to minimize my app, do the service work, > then activate Xcode, then insert results. > > Maybe there's a better way? Thanks, Kevin! I think you may have mentioned dealing with this a while back. On

Re: UIView final frame after device rotation

2013-04-03 Thread Markus Spoettl
On 4/3/13 12:47 AM, Quincey Morris wrote: On Apr 2, 2013, at 14:21 , Markus Spoettl mailto:ms_li...@shiftoption.com>> wrote: Not sure if I understand what you're saying, but if that was the case, the view's frame I'm attaching the overlay to would turn out wrong if the device is rotated. No,