01.
- (
void
)collectionView:(
UICollectionView
*)collectionView didSelectItemAtIndexPath:(
NSIndexPath
*)indexPath
02.
{
03.
04.
NSDictionary
*tmpDict = [myObject objectAtIndex:indexPath.row];
05.
06.
setNumberItem:[tmpDict objectForKey:number];
07.
setNameItem:[tmpDict objectForKey:name];
08.
setImageItem:[tmpDict objectForKey:images];
09.
10.
11.
12.
}