Re: Snapping windows while moving

2013-03-23 Thread Ken Thomases
On Mar 23, 2013, at 12:18 AM, Steve Mills wrote: On Mar 13, 2013, at 10:34:35, Ken Thomases k...@codeweavers.com wrote: The Window Server moves most windows entirely without involving the app (until the move is completed). If you want to change how windows get moved, I think you have to

CoreAnimation: rendering error 506

2013-03-23 Thread Oleg Krupnov
I get many repetitive messages in the console: CoreAnimation: rendering error 506 It disappears when I turn off creating any child layers in my layer-hosting views. What could it be caused by? Can I somehow insert a breakpoint to catch where this output is made? I tried symbolic breakpoints on

Re: UIViewController question

2013-03-23 Thread Matt Neuburg
On Fri, 22 Mar 2013 22:02:04 -0400, Koen van der Drift koenvanderdr...@gmail.com said: I'd like to make a view layout similar to the Apple Stocks app, where the top view remains the same and the bottom view can be swiped to display different info views related to the top view. How should I

Re: ARC Help

2013-03-23 Thread Matt Neuburg
On Fri, 22 Mar 2013 15:27:08 -0700, Quincey Morris quinceymor...@rivergatesoftware.com said: If you want to declare a private ivar yourself, you should do it in the implementation and not in the interface: @implementation MyClass { NSNumber* _someProperty; }

Re: unwind custom segue and uinavigationcontroller

2013-03-23 Thread Matt Neuburg
On Fri, 22 Mar 2013 09:31:28 +0100, Torsten Curdt tcu...@vafer.org said: If you want a button in the UINavigationBar to do something other than go back, don't use a back button. I should just go back. I don't want to change that. It's just about the how - the animation. Sorry, but why?

Re: Snapping windows while moving

2013-03-23 Thread Steve Mills
On Mar 23, 2013, at 02:41:21, Ken Thomases k...@codeweavers.com wrote: Meaning you've overridden -isMovable? Or did you call -setMovable: with NO? I think you have to do the latter because that configures the Window Server's metadata about the window. It might also configure the theme

Design Guidance

2013-03-23 Thread koko
… or maybe Divine Guidance. I have an iPad project that requires a collection view and since UICollectionView et al is iOS 6 … 1. Use UICollectionView and abandon iOS 5 users 2. Use som iOS 5 collection view (what might that be?) -koko ___

Re: Design Guidance

2013-03-23 Thread Hunter Hillegas
This collection view class works on iOS 5. It's an implementation of UICollectionView (same API). https://github.com/steipete/PSTCollectionView On Mar 23, 2013, at 11:29 AM, koko k...@highrolls.net wrote: 2. Use som iOS 5 collection view (what might that be?)

Re: Design Guidance

2013-03-23 Thread Luke Hiesterman
I preach option 1. I don't know what the adoption rate of iOS 6 is these days, but it was 60% of all iPhones within two weeks of launch*, I'd venture it's around 90+% nowadays. Moreover I think the set of people who don't update their OS probably has a decent percentage of people who won't

Re: Design Guidance

2013-03-23 Thread Luke Hiesterman
The asterisk is there because I meant to cite my source: http://www.zdnet.com/60-percent-of-iphones-now-running-ios-6-report-705169/ Luke On Mar 23, 2013, at 11:35 AM, Luke the Hiesterman luket...@apple.com wrote: I preach option 1. I don't know what the adoption rate of iOS 6 is these

Re: Cocoa-dev Digest, Vol 10, Issue 195

2013-03-23 Thread Rick Aurbach
On Mar 23, 2013, at 1:47 PM, cocoa-dev-requ...@lists.apple.com wrote: From: Luke Hiesterman luket...@apple.com To: koko k...@highrolls.net Cc: Cocoa Dev cocoa-dev@lists.apple.com Subject: Re: Design Guidance Message-ID: b48db7ec-fd2b-4110-9e9f-e77153151...@apple.com Content-Type:

Re: UIViewController question

2013-03-23 Thread Roger Dalal
I second Matt's approach. To emulate the look of Apple Stocks, use a single UIViewController that contains a UITableView in the upper section with a horizontal scrolling UIScrollView in the lower (with paging enabled). There also appears to be a black frame in a UImageView that is masking the

Re: UIViewController question

2013-03-23 Thread Koen van der Drift
Thanks, I'll explore the approach with a single UIViewController and two 'panes'. - Koen. On Mar 23, 2013, at 3:54 PM, Roger Dalal roger.da...@gmail.com wrote: I second Matt's approach. To emulate the look of Apple Stocks, use a single UIViewController that contains a UITableView in the