NSString In AQGridViewCell
问题 I have an AQGridView set up to display the files in the documents directory along with 4 other documents that are predefined and loaded into the table at startup. I need to know how I can set the cell to hold the URL of the document (yes, even the predefined ones! They are all just NSStrings after all.) so it can be called later with - (void)gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index { NSString *fileURL = [self._icons objectAtIndex:index]; // do stuff } and loaded