Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get cell by indexPath #142

Open
Nadavrbn opened this issue May 15, 2012 · 6 comments
Open

get cell by indexPath #142

Nadavrbn opened this issue May 15, 2012 · 6 comments

Comments

@Nadavrbn
Copy link

i have a viewcontroller with a kkgridview on it that the user is supposed to choose several cells (custom cells i have subclassed).
after the user has finished choosing i want to be able to retrieve those cells and perform manipulations on the data in them.
i haven't found a method that allows me to get any cell by it's indexpath.

i thought using the indexPathsForSelectedCells on the datasource collection itself but im not so sure about it because it may change while the user is selecting.

will the visibleIndexPaths property do any good for this? or is it just a collection of indexpath objects?

thanks i really need a solution for this.

@kolinkrewinkel
Copy link
Owner

-cellForRowAtIndexPath will give you a specific cell. -indexPathsForSelectedCells on the grid view instance will return the selected cells as an array of index paths.

@Nadavrbn
Copy link
Author

Thats what i'm looking for but i cant find this function anywhere (-cellForRowAtIndexPath). How do I call it?

@kolinkrewinkel
Copy link
Owner

Oops - cellForItemAtIndexPath:

@Nadavrbn
Copy link
Author

Thats the data source method for filling up the grid, I want to extract a cell from a grid after i have already put data in it.

@kolinkrewinkel
Copy link
Owner

Yes, the grid view will return the cell..

@Nadavrbn
Copy link
Author

You mean calling the method that I wrote. that will just create a new cell
which is pretty unnecessary.
I think i will stick with my original method of picking the data from the
collection from which i built the grid but I think adding a function to
retrieve cells from the gridView's already created cells like UITableView's
-cellForRowAtIndexPath: will be a great addition to the library.

Thanks for your good work and help anyway!

On Tue, May 22, 2012 at 12:44 AM, Kolin Krewinkel <
[email protected]

wrote:

Yes, the grid view will return the cell..


Reply to this email directly or view it on GitHub:

#142 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants