Re: Output of NSHTTPCookieStorage to NSTableView

2008-07-05 Thread James Murdza
On Tue, Jul 1, 2008 at 3:29 AM, Chris Purcell [EMAIL PROTECTED] wrote: How would I return domain for example? [cookie domain] But you can retrieve a dictionary of all the properties of the cookie like this: [cookie properties] NSHTTPCookie Class Reference -

Re: Output of NSHTTPCookieStorage to NSTableView

2008-07-05 Thread Michael Ash
On Sun, Jun 29, 2008 at 12:46 AM, Chris Purcell [EMAIL PROTECTED] wrote: Hello, Not sure where my problem is I've tried a few things and no success. I am trying to output NSHTTPCookieStorage *cookies array to a table view. Whenever I call the objectValueForTableColumn:row method the app

Re: Output of NSHTTPCookieStorage to NSTableView

2008-07-01 Thread Chris Purcell
Again thank you for the reply. Thanks to the column identifier, I am able to see data in the table view! However, when I attempt to click on a row or scroll down I receive an error in the console. -[NSURL objectAtIndex:]: unrecognized selector sent to instance 0x10edd0 I've tried with

Re: Output of NSHTTPCookieStorage to NSTableView

2008-06-30 Thread Jens Alfke
On 29 Jun '08, at 9:47 PM, Chris Purcell wrote: Thank you for the reply. I am a bit of a Cocoa newbie and I'm having trouble using the objectValueForTableColumn:. My NSTableView is only one column, but I would like to display all attributes of each key. You should have one column per

Re: Output of NSHTTPCookieStorage to NSTableView

2008-06-29 Thread Chris Purcell
Thank you for the reply. I think right now the simplest would be to convert the cookies array to an array of NSStrings. What would be the easiest way to do this? Thank you! On Jun 28, 2008, at 9:56 PM, Shawn Erickson wrote: On Sat, Jun 28, 2008 at 9:46 PM, Chris Purcell [EMAIL

Re: Output of NSHTTPCookieStorage to NSTableView

2008-06-29 Thread Jens Alfke
On 29 Jun '08, at 9:39 AM, Chris Purcell wrote: Thank you for the reply. I think right now the simplest would be to convert the cookies array to an array of NSStrings. What would be the easiest way to do this? Keep the array as an array of NSHTTPCookies. But your -

Re: Output of NSHTTPCookieStorage to NSTableView

2008-06-29 Thread Chris Purcell
Thank you for the reply. I am a bit of a Cocoa newbie and I'm having trouble using the objectValueForTableColumn:. My NSTableView is only one column, but I would like to display all attributes of each key. This is an example of what is outputting when I display a entry of the NSArray:

Output of NSHTTPCookieStorage to NSTableView

2008-06-28 Thread Chris Purcell
Hello, Not sure where my problem is I've tried a few things and no success. I am trying to output NSHTTPCookieStorage *cookies array to a table view. Whenever I call the objectValueForTableColumn:row method the app errors out, but if I leave it out the app launches displaying the

Re: Output of NSHTTPCookieStorage to NSTableView

2008-06-28 Thread Shawn Erickson
On Sat, Jun 28, 2008 at 9:46 PM, Chris Purcell [EMAIL PROTECTED] wrote: Hello, Not sure where my problem is I've tried a few things and no success. I am trying to output NSHTTPCookieStorage *cookies array to a table view. Whenever I call the objectValueForTableColumn:row method the app