2012-02-04 28 views
0

我想UIPicker開始從(將不顯示0,1)2UIPickerView值

self.tmpArray = [NSMutableArray arrayWithCapacity:10]; 

    for(int x = 2; x < 10; x++) 
    { 
     [self.tmpArray addObject:[NSNumber numberWithInt:x]]; 
    } 

- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component { 

    return [self.tmpArray count]; 
} 

通過上面UIPicker的代碼顯示0,1,2,3等等

回答

0

你'不會以任何方式傳遞tmpArray中的值,因此它們與UIPickerView顯示的內容無關。

您需要實現viewForRow:forComponent:並且能夠在拾取器視圖請求它們時提供合適的視圖。