Re: Link Error: following -F not found

2010-07-17 Thread Rick Genter
ore-plot anywhere in the code. How do I > interpret: /../../../ in the message? > > Thanks, That's a standard Unix path designation. /Users/lobster/Programming/Roboplasm/../../../core-plot/framework/build/Debug should be the same as /Users/core-plot/framew

Re: NSTask and piped commands

2010-05-18 Thread Rick Genter
arguments = [NSArray arrayWithObjects: @"-c", @"/bin/df -k", @"| > /usr/bin/grep /dev/ | /usr/bin/awk '{print $1 '\t' $4 '\t' $5 '\t' > $6;}'",nil]; You have to pass each word as a separate string: arrayWithObjects: @"

Re: Problem chaining initialization methods

2010-01-03 Thread Rick Genter
:capPath]) ; { return nil; } return self; -- Rick Genter rick.gen...@gmail.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-a

Re: reading (parsing) CSV (or Excel) data

2009-10-01 Thread Rick Genter
or.org/rfc/rfc4180.txt I don't know whether Excel strictly adheres to the RFC, but a .csv parser that I wrote a number of years ago that follows the RFC has so far been quite successful parsing Excel-generated .csvs without complaint. -- Ric

Re: Strategies for tracking a tricky (typing) slowdown/lag bug

2009-09-23 Thread Rick Genter
events, thus slowing it down. When you quit and restart then obviously the undo manager is starting from a clean slate. Does your application have any sort of "save" functionality and does it hook up to the undo system? I'm wondering if you see a performance improvement after

Re: Strategies for tracking a tricky (typing) slowdown/lag bug

2009-09-22 Thread Rick Genter
ou see the same issue? -- Rick Genter rick.gen...@gmail.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com H

Re: UITableView Custom cell with image

2009-09-22 Thread Rick Genter
and memory warnings. What can I do to have the image in the cell, without the memory problems? Don't load all of the images into memory. 200 images X 100K/image = 20MB. I don't think iPhone applications can use that much memory successfully. -- Rick Genter r

iPhone: Landscape support for tab bar?

2009-06-21 Thread Rick Genter
I'm just starting to design/develop my first iPhone app and have been reviewing the iPhone human interface guidelines. Is it true that tab bars do not support landscape mode? -- Rick Genter rick.gen...@gmail.com ___ Cocoa-dev mailing