我知道我必须将uislider值转换为nsnumber对象并将其存储在数组中,但是存储和加载值的所需循环是什么时间,例如10秒? 非常感谢
答案 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方法将接收您的数组,然后您可以使用它们执行所需的操作。