Re: Displaying NSArray in NSTableView

2008-11-17 Thread Quincey Morris
On Nov 17, 2008, at 04:03, 양승준 wrote: The data is in parBuffer initialized inside (id) init as parBuffer = [NSArray arrayWithObjects: [NSNumber numberWithInt:4], [NSNumber numberWithInt:8], [NSNumber numberWithFloat:3.14] , nil]; Is this a garbage-collected application? If not, then you

RE: Re: Displaying NSArray in NSTableView

2008-11-17 Thread 양승준
;t show up...  -Original Message- From: "Quincey Morris"<[EMAIL PROTECTED]> To: cocoa-dev@lists.apple.com Cc: Sent: 08-11-18(화) 04:01:57 Subject: Re: Displaying NSArray in NSTableView On Nov 17, 2008, at 04:03, 양승준 wrote: > Hi, I'm trying to display data in an array to a table v

Re: Displaying NSArray in NSTableView

2008-11-17 Thread Quincey Morris
On Nov 17, 2008, at 04:03, 양승준 wrote: Hi, I'm trying to display data in an array to a table view. The table view shows three rows, but no data in them. What did I do wrong? In IB, I connected the table view to the delegate in File's owner. Many thanks! Here is MyDocument.h: #import Cocoa.h

Displaying NSArray in NSTableView

2008-11-17 Thread 양승준
Hi, I'm trying to display data in an array to a table view. The table view shows three rows, but no data in them. What did I do wrong? In IB, I connected the table view to the delegate in File's owner. Many thanks! Here is MyDocument.h: #import Cocoa.h> @interface MyDocument : NSDocument { IBOu

Re: Displaying NSArray in NSTableView

2008-07-01 Thread mmalc crawford
On Jul 1, 2008, at 8:12 AM, Brandon Schlenker wrote: I'm using MGTwitterEngine and I am having problems displaying the downloaded tweets (an NSArray) in a table view or text view. MGTwitterEngine downloads the tweets using this. "- (void)statusesReceived:(NSArray *)statuses forRequest:(NSStri

Displaying NSArray in NSTableView

2008-07-01 Thread Brandon Schlenker
I'm using MGTwitterEngine and I am having problems displaying the downloaded tweets (an NSArray) in a table view or text view. MGTwitterEngine downloads the tweets using this. "- (void)statusesReceived:(NSArray *)statuses forRequest:(NSString *)identifier" I need to display "statuses" in