单击按钮时清除图像阵列

时间:2010-07-05 08:31:17

标签: iphone

我有一个数组

 imageArray  = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"1.png"], 
                            [UIImage imageNamed:@"2.png"],
                            [UIImage imageNamed:@"3.png"],
                            [UIImage imageNamed:@"4.png"],
                            [UIImage imageNamed:@"5.png"],
                            [UIImage imageNamed:@"6.png"],
                            [UIImage imageNamed:@"7.png"],
                            [UIImage imageNamed:@"8.png"],
                            [UIImage imageNamed:@"9.png"],
                            [UIImage imageNamed:@"10.png"],
                            [UIImage imageNamed:@"11.png"],
                            [UIImage imageNamed:@"12.png"],
                            nil];

我想在点击按钮时清除此数组。

这些是屏幕上的一系列图像。

如果按下清除按钮,图像应清除所有图像。

我该怎么做?

问候 shishir

1 个答案:

答案 0 :(得分:3)

[imageArray release];
imageArray = nil;