使用CPPickerView。我有它的工作,目前編碼有點太長,我想我的大腦已經死了,所以任何幫助將不勝感激。我知道答案很簡單,但對於我的生活我只是看不到它。CPPickerView DataSource
我想加載一個字符串數組到視圖中,而不是數字。
目前的方法使用的數字是:
- (NSString *)pickerView:(CPPickerView *)pickerView titleForItem:(NSInteger)item
{
return [NSString stringWithFormat:@"%i", item + 1];
}
如何創建/編輯的方法,使字符串出現,而不是整數?
黃金!謝謝。 – jkd359