Cocoaheads Lake Forest meets this Wednesday

2013-04-09 Thread Scott Ellsworth
CocoaHeads Lake Forest will be meeting on the second Wednesday of the month. We will be meeting at the Orange County Public Library (El Toro) community room, 24672 Raymond Way, Lake Forest, CA 92630 We will be having an informal discussion of team dynamics, software engineering, and tools. If yo

Re: CoreText and a trailing space

2013-04-09 Thread Roland King
That looks like a good thing to try, thanks. I'm quite fortunate in that the images I need to add are perfectly the size of an ideographic space (they are fragments of Chinese characters which don't have real Unicode points) so CT does a fine job with them. Sounds like I need one trailing charac

Re: CoreText and a trailing space

2013-04-09 Thread Wim Lewis
On 9 Apr 2013, at 7:04 PM, Roland King wrote: > I have an attributed string I'm laying out with a CTFrame. The string can > have a trailing space in it, possibly more than one, they are actually > \u3000, IDEOGRAPHIC SPACE. I need them to be treated like a real character > and laid out, even if

CoreText and a trailing space

2013-04-09 Thread Roland King
I have an attributed string I'm laying out with a CTFrame. The string can have a trailing space in it, possibly more than one, they are actually \u3000, IDEOGRAPHIC SPACE. I need them to be treated like a real character and laid out, even if that breaks onto a new line. Those 'spaces' are placeh

Re: Understanding NSTask

2013-04-09 Thread Jerry Krinock
On 2013 Apr 08, at 08:21, Torsten Curdt wrote: > Old code but something along the lines of this here should work > > https://github.com/tcurdt/uif2iso4mac/blob/master/Sources/TaskCommand.m Torsten Curdt! Coincidentally, I've been studying your asynctask.m for the last day, and just pushed to

Re: Understanding NSTask

2013-04-09 Thread Uli Kusterer
On 08.04.2013, at 13:59, Rui Henriques Pacheco wrote: > I'm currently going through all available literature on Google on using > NSTask to open SSH tunnels. While I have running code I'm not sure I > understand everything that's happening. > > First, NSTask executes SSH as a subprocess. Then w