我正在使用SBPageFlowView
我们获得当前单元格。但我的目标是获得之前cell
。我们如何获得之前的cell
。
- (void)didReloadData:(UIView *)cell :(NSInteger)index
{
NSLog(@"%lu",(unsigned long)[randomSearchArray count]);
NSLog(@"%ld",(long)index);
UIImageView *imageView = (UIImageView *)cell;
NSDictionary *dict=[randomSearchArray objectAtIndex:index -1 ];
[imageView sd_setImageWithURL:[NSURL URLWithString:[dict objectForKey:@"groupimage"]] placeholderImage:imageplaceholder];
}