Re: (no subject)
Re: (no subject)
- Subject: Re: (no subject)
- From: Jeremy French <email@hidden>
- Date: Fri, 3 Dec 2004 10:21:08 -0500
In place of:
return [discoveredServices objectAtIndex:row];
try:
return [[discoveredServices objectAtIndex:row] name];
On Nov 26, 2004, at 11:20 PM, Michael A. Crawford wrote:
The problem is that when I run the example the table-view, which should show any active RCE clients, is blank all the time. I can see from the debugger and trace output that two service instances are being discovered added to the NSMutableArray associated with the table-view, but they don't show up in the table-view.
and
- (id)tableView:(NSTableView*)tableView objectValueForTableColumn:(NSTableColumn*)tableColumn
row:(int)row
{
return [discoveredServices objectAtIndex:row];
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden