[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Implementing tableview(GORM and PROJECTCENTER)
From: |
David Chisnall |
Subject: |
Re: Implementing tableview(GORM and PROJECTCENTER) |
Date: |
Tue, 7 Jul 2015 12:03:29 +0100 |
On 7 Jul 2015, at 07:55, chandan bp <cbp698@gmail.com> wrote:
>
> I am able to build and run the application, however when I run
> the app using the project center, the table is empty. In the GUI after app
> launch I get 'Data source doesnt respond to numberOfRowsInTableView'. Can
> anyone tell me where I am going wrong or what additional code I have to add
> apart from the ones mentioned in the link provided.
You have done one of two things wrong:
- In GORM, you gave not correctly connected the NSTableView datasource outlet
to your data source object.
- In your data source class, you have not implemented the
numberOfRowsInTableView: method.
David