Re: Basics of Cocoa Bindings

2015-09-11 Thread Quincey Morris
On Sep 11, 2015, at 21:05 , Quincey Morris wrote: > > There’s a sub-hierarchy of 3 other things, called “Table Cell View” […], > "Table View Cell” […] and “Table View Cell” […]. On reflection, I feel obliged to emphasize — for anyone who enjoys the painfully funny — the perverseness of this l

Re: Basics of Cocoa Bindings

2015-09-11 Thread Quincey Morris
On Sep 11, 2015, at 20:20 , Alex Hall wrote: > > Okay, the error I'm seeing (about [ViewController count]) is the table asking > for how big it should be. Actually, that’s not it, though you can be excused for thinking so. What’s wrong is that you tried to add way too many bindings, in particu

Re: Basics of Cocoa Bindings

2015-09-11 Thread Alex Hall
Minor update: in the zip file, in ViewController.swift, I hadn't changed the variable name in the for loop. It should be "tweets", not "tweetsArray". The project builds, and the error appears, either way. Actually, that it builds with a mistake like that seems a bit odd. Anyway, just something t

Re: Basics of Cocoa Bindings

2015-09-11 Thread Alex Hall
> On Sep 11, 2015, at 21:04, Quincey Morris > wrote: > > On Sep 11, 2015, at 15:49 , Alex Hall > wrote: >> >> I followed all of that, and I see what you're saying. The binding to an >> array is, to it, no different than binding to a boolean or a string, it's >> ju

Re: Basics of Cocoa Bindings

2015-09-11 Thread Quincey Morris
(continued from part 1) On Sep 11, 2015, at 15:49 , Alex Hall mailto:mehg...@icloud.com>> wrote: > > Out of curiosity, why do I not need these but I *do* need insert and remove > methods for the property? All standard UI elements use KVC to retrieve their values, or use bindings which uses KVC

Re: Basics of Cocoa Bindings

2015-09-11 Thread Quincey Morris
On Sep 11, 2015, at 15:49 , Alex Hall wrote: > > I followed all of that, and I see what you're saying. The binding to an array > is, to it, no different than binding to a boolean or a string, it's just a > single object. But how does a binding know what it's accessing? I figured it > was down

Looking for cocoa developer

2015-09-11 Thread den...@colorgradingcentral.com
We are looking for a passionate OS X software engineer to work on digital imaging products. Particularly we are looking for someone with experience in developing graphical user interfaces for digital imaging or video systems using Cocoa/Objective-C/C++/OpenGL. If you or someone you know might b

Re: Basics of Cocoa Bindings

2015-09-11 Thread Quincey Morris
(ugh, reposted due to size moderation, again) On Sep 11, 2015, at 13:40 , Alex Hall wrote: > What I've done so far is set things up, but not gotten the app to run. At > first, I was getting some odd errors, but I eventually realized that > populating my tweetsArray object in viewDidLoad was a

Re: Detecting second launch of the "LSUIElement=1"-application

2015-09-11 Thread Nick
Thanks Jens, it does work. I should've looked at the delegate reference before asking. 2015-09-11 23:54 GMT+03:00 Jens Alfke : > > On Sep 11, 2015, at 1:12 PM, Nick wrote: > > Can I somehow detect that my application has been launched again, when it > is already running (it has an icon in NSStat

Re: Detecting second launch of the "LSUIElement=1"-application

2015-09-11 Thread Jens Alfke
> On Sep 11, 2015, at 1:12 PM, Nick wrote: > > Can I somehow detect that my application has been launched again, when it > is already running (it has an icon in NSStatusBar, but no icon in Dock)? The usual way is to implement the NSApplication delegate method -applicationShouldHandleReopen:has

Detecting second launch of the "LSUIElement=1"-application

2015-09-11 Thread Nick
Hello Can I somehow detect that my application has been launched again, when it is already running (it has an icon in NSStatusBar, but no icon in Dock)? I need to display a specific window when this happens. Thank you Nick ___ Cocoa-dev mailing list (C

Re: SOAP Server library/framework for Objective C

2015-09-11 Thread Maxthon Chan
Plug: I am writing a general-purpose FastCGI framework, CGIKit, for Objective-C, and couple this to any FastCGI-capable Web server (nginx, Apache with mod_fcgid even IIS) you get a complete Web stack. Also CGIKit is more likely than not to be able to be ported to Linux. CGIKit: https://github.c

Re: SOAP Server library/framework for Objective C

2015-09-11 Thread Nick
Yes, there's that and also a csoap library (written in C), now figuring what would be a better way - either implement the SOAP part on top of the CocoaHTTPServer or wrap the CSoap in Objective-C 2015-09-11 7:07 GMT+03:00 Jens Alfke : > Well, CocoaHTTPServer is a general purpose HTTP server librar