Cocoa scripting app design query

2012-10-05 Thread jonathan
This is a query about the design of an app to create Cocoa scripts so hopefully it isn't too OT. There are no code queries below merely an appeal for opinions about the app's design. I make an app called KosmicTask which is an integrated scripting environment (think IDE for scripts). It

Re: NSURLConnection working OK on iOS 6?

2012-10-05 Thread Roger Dalal
Laurent: We are definitely seeing more issues with NSURLConnection on iOS 6. In particular, it seems that iOS 6 re-establishes data connectivity a little bit slower than before, especially from a locked state. Because our team had not implemented data connectivity (Reachability) tests exactly

Re: Migrating to iPhone 5 screen size

2012-10-05 Thread Matt Neuburg
Neat idea! It appears also that in Xcode 4.5.1 (and 4.5?) you are handed the necessary launch images as part of a new project. m. On Sat, 22 Sep 2012 09:50:59 -0700, Gene Crucean emailgeneonthel...@gmail.com said: Keep in mind that you can always just include a blank white image for a splash

Re: Migrating to iPhone 5 screen size

2012-10-05 Thread John Tsombakos
On Fri, Oct 5, 2012 at 12:20 PM, Matt Neuburg m...@tidbits.com wrote: Neat idea! It appears also that in Xcode 4.5.1 (and 4.5?) you are handed the necessary launch images as part of a new project. m. I've found also when opening an existing project in 4.5, Xcode will generate a warning saying

dropping alias file on NSPathControl with App Sandbox

2012-10-05 Thread Sean McBride
Hi all, NSOpenPanal takes care of resolving aliases/symlinks for you, which is important with App Sandbox since you want access to the target not the alias file itself. But NSPathControl, in its pathControl:acceptDrop: method, does not resolve the alias for you, and try as I may, I can't find

Static Cocoa Library

2012-10-05 Thread koko
I want to make a static cocoa library that is an NSTableView and allots data is contained in the library. I want images in the rows of the table. Where would one get these images as their is no bundle where that can be stored? Or the question is where are resources for a static coco library

NSViewController

2012-10-05 Thread koko
Ok, I have done this: m_SNPreferencesViewController = (SNPreferencesViewController*)[[NSViewController alloc] initWithNibName:@SNPreferencesViewController.xib bundle:nil]; and this m_SNPreferencesViewController = (SNPreferencesViewController*)[[NSViewController alloc]

Re: NSViewController

2012-10-05 Thread Erik Stainsby
@SNPreferencesViewController.xib Don't included the xib file extension. Erik Stainsby erik.stain...@roaringsky.ca On 2012-10-05, at 8:38 PM, koko k...@highrolls.net wrote: Ok, I have done this: m_SNPreferencesViewController = (SNPreferencesViewController*)[[NSViewController alloc]

Re: Embedding resources in Static Cocoa Library

2012-10-05 Thread Jerry Krinock
On 2012 Oct 05, at 19:23, koko k...@highrolls.net wrote: Or the question is where are resources for a static coco library stored? I know you can embed an Info.plist in a command-line tool, by specifying it in the Info.plist Build Setting. But the only non-executable thing I've ever seen