On Wed, Nov 19, 2008 at 9:27 PM, Richard S. French <[EMAIL PROTECTED]> wrote: > How do I return a count and the data?
Read up on implementing a table view data source. Your data source object implements these methods and returns the correct data. So once you have loaded the data from a plist and filtered it as necessary, return the number of items in the array from your implementation of -numberOfRowsInTableView:, and return the requested cell data from -tableView:objectValueForTableColumn:row:. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [EMAIL PROTECTED]
