任何人都知道如何把连续的数值作为习惯选择的一部分,就像在日期<代码>上几个月轮值一样。 UIPickerView 这里是我的源阵列数据:
self.one =[[NSMutableArray alloc]init];
for (int i=0; i<=101; i++) {
[one addObject:[NSNumber numberWithInt:i]];
}
//and here my titleforrow method
if (component==0) {
return [[one objectAtIndex:row] stringValue];
}