-
Notifications
You must be signed in to change notification settings - Fork 152
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
Comments
-cellForRowAtIndexPath will give you a specific cell. -indexPathsForSelectedCells on the grid view instance will return the selected cells as an array of index paths. |
Thats what i'm looking for but i cant find this function anywhere (-cellForRowAtIndexPath). How do I call it? |
Oops - cellForItemAtIndexPath: |
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. |
Yes, the grid view will return the cell.. |
You mean calling the method that I wrote. that will just create a new cell Thanks for your good work and help anyway! On Tue, May 22, 2012 at 12:44 AM, Kolin Krewinkel <
|
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.
The text was updated successfully, but these errors were encountered: