Re: Re-booting after changing Icons in OS X Doc app

2013-07-18 Thread Peter Teeson
On 2013-07-18, at 1:23 AM, Quincey Morris wrote: > -- If the new icons don't show up, then you probably have an app bundle > somewhere that has the old icons, and Launch Services is choosing the bundle > with the old icons to represent your app. > > This sometimes happens when you have built fo

Re: Re-booting after changing Icons in OS X Doc app

2013-07-18 Thread Peter Teeson
On 2013-07-18, at 10:35 AM, Peter Teeson wrote: > On 2013-07-18, at 1:23 AM, Quincey Morris wrote: >> -- If the new icons don't show up, then you probably have an app bundle >> somewhere that has the old icons, and Launch Services is choosing the bundle >> with the old icons to represent your app

Re: LATIN SMALL LETTER U WITH DIAERESIS

2013-07-18 Thread Tom Davie
A workaround would be to use +[NSFileHandle fileHandleForWritingAtURL: error:] and -[NSFileHandle fileDescriptor] to get you a FD to use in C land. Tom Davie On Jul 17, 2013, at 11:26 PM, koko wrote: > With this character: > > LATIN SMALL LETTER U WITH DIAERESIS > Unicode: U+00FC, UTF-8: C3 B

NSUndoManager Won't Redo

2013-07-18 Thread Keary Suska
Posting in hopes that someone has run into this case and figured it out. Goal: I have a fairly vanilla document-based app whose content is made up of a number of discrete data bits, some managed by NSTextViews. I would like the text views to handle undo during editing as they should but without

Re: NSUndoManager Won't Redo

2013-07-18 Thread Quincey Morris
On Jul 18, 2013, at 11:58 , Keary Suska wrote: > Posting in hopes that someone has run into this case and figured it out. There used to be a bug in text field undo in a somewhat similar case (though I don't remember whether it involved using separate undo managers for the text fields) and it's

Re: UIScrollView to UIImage

2013-07-18 Thread Cody Garvin
Hi Trygve, The UIScrollView adds these subviews to what's called a contentView. This is why you have to change a content size to adjust your scrolling, vs changing the frame of the UIScrollView. You're grabbing the wrong layer. You can grab the correct view / layer: [[scrollView contentView] la

Re: UIScrollView to UIImage

2013-07-18 Thread Kyle Sluder
On Thu, Jul 18, 2013, at 01:18 PM, Cody Garvin wrote: > The UIScrollView adds these subviews to what's called a contentView. This > is why you have to change a content size to adjust your scrolling, vs > changing the frame of the UIScrollView. You're grabbing the wrong layer. When learning about A

Re: LATIN SMALL LETTER U WITH DIAERESIS

2013-07-18 Thread koko
Thanks for all the input … I looked at everything presented and suggested and in so doing realized that I was causing the problem It all works now Get the Path 1. get nsstring filename from save panel 2. convert to utf8 3. store utf8 in my model file name object Use the Path 1. Get utf8 from m