Re: Drag and Drop from Photos

2015-04-26 Thread Graham Cox
On 26 Apr 2015, at 2:33 pm, Ken Thomases k...@codeweavers.com wrote: Second, even once the destination provides the URL of the directory in which the files should be created and the source replies with the names, you can't rely on the files having been created. The source is actually

Weird UITableView problem

2015-04-26 Thread William Squires
I made a fairly simple iOS app (Single View template, iPhone, Swift) that has a UITableView. I've got it all hooked up, and running the project (in the simulator) shows the table view, but only 13 (out of 20) rows are ever shown. here's the deal: ViewController.swift class

One must handle UIInterfaceOrientationUnknown

2015-04-26 Thread Michael Crawford
I had a rather unsightly UI bug that resulted in the initial layout of Warp Life's UI being all wonky. After some repeated testing I determined that it only happened right at app startup, and only if I was holding my iPod in an almost-but-not-quite level sorta kinda landscape mode. I got the

Re: Weird UITableView problem

2015-04-26 Thread Mike Abdullah
On 26 Apr 2015, at 18:29, William Squires wsqui...@satx.rr.com wrote: I made a fairly simple iOS app (Single View template, iPhone, Swift) that has a UITableView. I've got it all hooked up, and running the project (in the simulator) shows the table view, but only 13 (out of 20) rows are

Re: To Swiftly Crash

2015-04-26 Thread Quincey Morris
On Apr 26, 2015, at 12:40 , Charles Jenkins cejw...@gmail.com wrote: Is this a disaster in Swift-to-ObjC bridging, or have I done something wrong to cause it? func textView( tv:NSTextView, shouldChangeTextInRange range:NSRange, replacementString:String ) - Bool The problem is that the

To Swiftly Crash

2015-04-26 Thread Charles Jenkins
I’m experiencing a crash in what looks like Swift-library code in preparation for a call from NSTextView to my delegate method. I put a breakpoint on my method, but the crash seems to happen before actually getting into my code. To see if the problem could be reproduced succinctly, I took an