Re: API to determine status of System Integrity Protection?

2015-09-12 Thread sqwarqDev
> On 13 Sep 2015, at 00:43, SevenBits wrote: > > That document doesn't mention an API… > Hence, since that is the current documentation, my conclusion : “Don’t think so”. ___ Cocoa-dev mailing list

Re: Basics of Cocoa Bindings

2015-09-12 Thread Quincey Morris
On Sep 12, 2015, at 06:55 , Alex Hall wrote: > > if you need to display an array or dictionary in a table, when that data > source could be updated at a random time or asynchronously, how might you do > it without bindings? Ah, but what do you mean by “without”? There are

Re: API to determine status of System Integrity Protection?

2015-09-12 Thread Ed Wynne
On Sep 12, 2015, at 1:45 PM, sqwarqDev wrote: > >> On 13 Sep 2015, at 00:43, SevenBits wrote: >> >> That document doesn't mention an API… >> > Hence, since that is the current documentation, my conclusion : “Don’t think > so”. There is an

Re: API to determine status of System Integrity Protection?

2015-09-12 Thread sqwarqDev
> On 9 Sep 2015, at 02:06, James Bucanek wrote: > > I'll assume by the raging silence that there is no such API. Don’t think so. The current documentation is here:

Re: API to determine status of System Integrity Protection?

2015-09-12 Thread SevenBits
That document doesn't mention an API... On Saturday, September 12, 2015, sqwarqDev wrote: > > On 9 Sep 2015, at 02:06, James Bucanek > wrote: > > > > I'll assume by the raging silence that there is no such API. > > Don’t think so.

Re: Display USB Video Camera output : AVFoundation?

2015-09-12 Thread Jerry Krinock
Well, AVCaptureView is not very malleable. I needed to use an AVCaptureVideoPreviewLayer, which needed quite a few more lines of code than the zero I reported yesterday :( For the record, I have pasted in the working code below. The only problem is that this silly warning prints to the

Re: Basics of Cocoa Bindings

2015-09-12 Thread Alex Hall
> On Sep 12, 2015, at 08:59, dangerwillrobinsondan...@gmail.com wrote: > > You would implement the NSTableView data source and delegate methods in a > class. In a simple case in the app delegate to try them out and get used to > them. That's how my project started out, using a data source

Re: Basics of Cocoa Bindings

2015-09-12 Thread Alex Hall
IT! WORKS! Thanks so much for your help. Now I'll advance this project, to test more aspects of this binding, and hopefully grasp things more completely with practical examples I make. Out of curiosity, you said you never use table view bindings anymore. If you had to display the contents of

Re: Basics of Cocoa Bindings

2015-09-12 Thread dangerwillrobinsondanger
You would implement the NSTableView data source and delegate methods in a class. In a simple case in the app delegate to try them out and get used to them. Sent from my iPhone > On Sep 12, 2015, at 9:28 PM, Alex Hall wrote: > > IT! WORKS! Thanks so much for your help.