我创建了一个自定义AQGridViewCell,如下所示:
- (AQGridViewCell *) gridView: (AQGridView *) aGridView cellForItemAtIndex: (NSUInteger) index
{
static NSString * PlainCellIdentifier = @"PlainCellIdentifier";
GridViewCell * cell = (GridViewCell *)[aGridView dequeueReusableCellWithIdentifier:@"PlainCellIdentifier"];
if ( cell == nil )
{
cell = [[GridViewCell alloc] initWithFrame: CGRectMake(3.333, 3.3336, 100, 100)
reuseIdentifier: PlainCellIdentifier];
}
NSString *stringURL = [[featuredStories objectAtIndex:index] objectAtIndex:1];
NSLog(@"stringURL: %@", stringURL);
NSURL *url = [NSURL URLWithString:stringURL];
[cell.imageView setImageWithURL:url placeholderImage:[UIImage imageNamed:@"example0.png"]];
cell.storyID = [[featuredStories objectAtIndex:index] objectAtIndex:0];
return cell;
}当您选择单元格时,我添加了如下方法:
- (void) gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index {
//I want to NSLog the cell.storyID here
NSLog (@"Selected theArgument=%d\n", index);
}如何在gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index中的cell中访问storyID?
发布于 2012-06-14 07:24:54
将您的didSelectItemAtIndex更新为以下内容
- (void) gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index {
//Get the cell at the selected index
GridViewCell * cell = (GridViewCell *)[grid cellForItemAtIndex:index];
NSLog(@"Story Id = %@", cell.storyID);
}https://stackoverflow.com/questions/11024353
复制相似问题