如何在iOS上的nsmutablearray上存储uislider值10秒,以及如何将nsmutablearray值加载到其他uislider

时间:2012-05-03 18:51:31

标签: ios nsmutablearray uislider

我知道我必须将uislider值转换为nsnumber对象并将其存储在数组中,但是存储和加载值的所需循环是什么时间,例如10秒? 非常感谢

1 个答案:

答案 0 :(得分:0)

嗯,你可以这样做:

 NSMutableArray *arrayWithSomeValues=[NSMutableArray array];
 // My options is the actual option from your slider. 
 [arrayWithSomeValues addObject:myOption];
 // ...
 // After adding everything you need
 // ...
 [self performSelector:@selector(switchValues:) withObject:arrayWithSomeValues afterDelay:10.0];

然后switchValues方法将接收您的数组,然后您可以使用它们执行所需的操作。