Örn:
int x=4;
int y=5;
NSArray *myArray=[NSArray arrayWithObjects: [NSNumber numberWithInt:x], [NSNumber numberWithInt:y], nil];
//dizideki değerleri tekrar kullanmak için:
int x,y;
x= [[myArray objectAtIndex:0] intValue];
y= [[myArray objectAtIndex:1] intValue];

