LOGIC:
- 5 image in a array
example:
apple.png,mango.png,bird.png,sun.png,moon.png
I need to use arc4random in this array, so I got index as 1, so value got mango.png
in other array I stored
number = [[NSMutableArray alloc]initWithObjects:@"4",@"2",@"9",@"1",@"8",@"7",@"5",@"3",@"6",@"10", nil];
and used arc4random and i got the output as index:2 value as:9
then i need to print 9 times image of mango in image view.
please help how to code this using objective-c
UIImageobject description?NSLog(@"%@",someVariablecontainingaUIImageReference)?