Re: AVSimplePlayer in Swift?

2017-01-08 Thread Charles Srstka
> On Jan 8, 2017, at 1:12 PM, Quincey Morris > wrote: > > On Jan 8, 2017, at 05:49 , Charles Jenkins > wrote: >> >> changing to CDouble didn’t help > > This is one of those cases where I regretted pressing

Re: AVSimplePlayer in Swift?

2017-01-08 Thread Quincey Morris
On Jan 8, 2017, at 05:49 , Charles Jenkins wrote: > > changing to CDouble didn’t help This is one of those cases where I regretted pressing “Send” just 2 minutes later. What I wrote was a thought process that didn’t make complete sense. There are 4 possibilities and you’ll

Re: Code Review Requested - In-App Purchases

2017-01-08 Thread Charles Jenkins
And of course the second after I posted that, I decided userInterface should be a weak var. On Sun, Jan 8, 2017 at 8:29 AM, Charles Jenkins wrote: > As a programmer, aren’t you suspicious when you write something that works > flawlessly the first time? I worry it just means

Code Review Requested - In-App Purchases

2017-01-08 Thread Charles Jenkins
As a programmer, aren’t you suspicious when you write something that works flawlessly the first time? I worry it just means there’s a disastrous time bomb. In Apple’s documentation about in-app purchases, there’s a lot of talk about verifying receipts, but when I look at articles and sample code,

Re: [OT] Testing In-App Purchases

2017-01-08 Thread Quincey Morris
On Jan 7, 2017, at 12:32 , Charles Jenkins wrote: > > I have created a test Sandbox user in iTunes connect, but no matter what I > do, I can’t log in as that user on my device in order to test an in-app > purchase. I have verified the email, logged in to the Apple ID

Re: AVSimplePlayer in Swift?

2017-01-08 Thread Quincey Morris
On Jan 7, 2017, at 13:24 , Charles Jenkins wrote: > > If I take that working code and the ONLY changes I make are to (a) change > currentTime to the code below and (b) add the binding in IB, the video will > not play. The strange thing is when I do this, I think KVO is

Re: Turn off Window Snapping on Sierra

2017-01-08 Thread Tamas Nagy
Thanks, that works, but only if the NSWindow’s isMovableByWindowBackground is set to NO. > On 2017. Jan 8., at 10:08, dangerwillrobinsondan...@gmail.com wrote: > > IIRC use NSBorderlessWindowMask. > > > Sent from my iPhone > >> On Jan 8, 2017, at 17:55, Tamas Nagy

Turn off Window Snapping on Sierra

2017-01-08 Thread Tamas Nagy
Hi, is there any way to disable the window snapping feature introduced in macOS Sierra in an NSWindow subclass? I have an own snapping-like feature in my NSwindow subclass which works a little bit different than Apple’s implementation and the two are interfering on Sierra. Thanks! Best,