Want advice on NSURLSession command line tool

2015-03-18 Thread Daryle Walker
Here’s what I got so far: > @import Foundation; > #include > #include > > int returnCode = EXIT_SUCCESS; > bool shouldExit = false; > > int main(int argc, const char * argv[]) { > if (argc != 2) { > fprintf(stderr, "Usage: %s URL\n", argv[0]); > returnCode = EXIT_FAILURE

Experiences using Chromium Embedded Framework?

2015-03-18 Thread Juanjo Conti
Have anyone used CEF from Objective-C or Swift? Any tip or recommendations? Thanks, -- Juanjo Conti http://goog_2023646312>@carouselapps.com > Software Engineer - Carousel Apps -- Carousel Apps Limited, registered in England & Wales with registered number 7689440

Re: Scrolling Text Field Class for Logging?

2015-03-18 Thread Jens Alfke
> On Mar 18, 2015, at 10:34 AM, Dave wrote: > > Is there a Class/Subclass available to do this or do I need to write my own? You need to write your own, but it’s not hard. Just check the scroll position before appending the text; if it was at the bottom before, scroll it to the bottom again.

Scrolling Text Field Class for Logging?

2015-03-18 Thread Dave
Hi All, I have a Detailed Activity Window in my Application which logs detailed information into a Scrolling Text Field. I’d like to have it work the same way in which the XCode Log Windows works, e.g. it fills the visible text field and then starts scrolling, if the user clicks in the Scroll B

Re: Text fields bound to numerical property - commas in number

2015-03-18 Thread Ken Thomases
On Mar 18, 2015, at 7:56 AM, Jonathan Taylor wrote: > I have a text field in my GUI bound to a property of type 'double'. The text > field does not have any explicit number formatter attached to it. When I set > the property e.g. to 22000 then it appears in the text field as: > 22,000 > OK, fa

Text fields bound to numerical property - commas in number

2015-03-18 Thread Jonathan Taylor
I've come back to some old code that I haven't used for a while, and in the meantime I've done several OS upgrades and Xcode upgrades so plenty has changed, but my code is behaving in a strange way that I'm sure it didn't used to. I have a text field in my GUI bound to a property of type 'doubl