誰でも、月間ホイールUIPickerView
のように、カスタムピッカーのコンポーネントで連続値を作成する方法を知っていますか?ソース配列データは次のとおりです。円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];
}
可能な解決策の1つは、ユーザーのスクロールがデータソースの終わりに近づいているときにオブジェクトをアレイに追加することです。 – n00bProgrammer