Re: Legal Opinion on GCUndoManager

2014-01-31 Thread Graham Cox
On 1 Feb 2014, at 4:32 am, Fritz Anderson wrote: > If I were implementing the review process, my automated checker would run > strings(1) on the binary, and flag the collision with private API. Under my > notional process, the reviewer would have to reject, because he has no way of > knowing

Re: Xcode 5 & Obj-C++

2014-01-31 Thread Scott Ribe
On Jan 30, 2014, at 3:56 PM, Greg Parker wrote: > I bet those same partisans would be the first to the barricades to complain > about the performance downsides of any C++ runtime implementation that did > try to improve ABI fragility. Well, I don't know about that. But it would certainly be wo

Re: What iOS device?

2014-01-31 Thread Fritz Anderson
On 31 Jan 2014, at 12:45 AM, KappA wrote: > I came across this the other day. Have you already looked at this? > > http://stackoverflow.com/questions/448162/determine-device-iphone-ipod-touch-with-iphone-sdk Very strange that nobody (until I did) noticed that if you want to convert from one un

Re: Legal Opinion on GCUndoManager

2014-01-31 Thread Fritz Anderson
On 31 Jan 2014, at 11:46 AM, Quincey Morris wrote: > On Jan 31, 2014, at 09:32 , Fritz Anderson wrote: > >> I can’t offer legal opinions or advice (retirees from the bar are >> particularly forbidden to do so) … > > I can’t help asking: Was the retirement voluntary, or did the bar just close

Re: Xcode 5 & Obj-C++

2014-01-31 Thread Fritz Anderson
On 30 Jan 2014, at 4:14 PM, Jens Alfke wrote: > And C++ partisans would tell you that many of these things are limitations of > the usual C++ runtimes, not the language itself, but I'm not aware of any > current runtimes that avoid them. For reference, see

Re: Legal Opinion on GCUndoManager

2014-01-31 Thread Quincey Morris
On Jan 31, 2014, at 09:32 , Fritz Anderson wrote: > I can’t offer legal opinions or advice (retirees from the bar are > particularly forbidden to do so) … I can’t help asking: Was the retirement voluntary, or did the bar just close at 2 am? ___

Re: Legal Opinion on GCUndoManager

2014-01-31 Thread Fritz Anderson
On 29 Jan 2014, at 11:24 PM, Jerry Krinock wrote: > > On 2014 Jan 29, at 13:03, Keary Suska wrote: > >> unfortunately it [GCUndoManager] is not App Store safe … as it relies on a >> private method call for proper NSDocument change tracking… > > I just spent the last half hour studying this

Re: ibtool and genstrings do nothing

2014-01-31 Thread Jonathan Hess
___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.co

Re: Memory issue with ALAssetLibrary

2014-01-31 Thread Peng Gu
Thanks Jens, In my case, it uses at most 12MB memory, new images didn't cause more memory usage. It hasn't caused any problems for my app. Good to know NSCache is released by the OS : ] -- Peng On Fri, Jan 31, 2014 at 10:04 AM, Jens Alfke wrote: > > On Jan 30, 2014, at 10:04 PM, Peng Gu wro

Re: Memory issue with ALAssetLibrary

2014-01-31 Thread Jens Alfke
On Jan 30, 2014, at 10:04 PM, Peng Gu wrote: > ​When I use *ALAssetLibrary:assetForURL:resultBlock:failtureBlock *to > retrieve full screen images from ​camera roll, the allocated memory never > release until the app enters the background. My guess is the system keeps > the cache for the images

Re: Delays in awaking iOS app

2014-01-31 Thread Gerriet M. Denkmann
On 29 Jan 2014, at 22:02, Gerriet M. Denkmann wrote: > I have an app with a button. > I start the app, then put the iPhone to sleep. > I wake the phone up and press the button repeatedly, until something happens. > > There is an NSLog() in applicationWillEnterForeground: and in the action > me