month wheel in date のように、カスタムピッカーのコンポーネントで連続値を作成する方法を知っている人はいます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];
}