for ループによって作成された UIPickerView があります。オプションを事前に選択するにはどうすればよいですか?
arrayColour = [[NSMutableArray alloc] init];
for (int i = 0; i < [substrings count]; i++)
{
//parse out each option (i)
NSString* companyoption = [substrings objectAtIndex:i];
//add as option to component
[arrayColour addObject:companyoption];
}
StoredPicker という変数があり、以前に選択したオプションの値があり、このビューに戻ったときにそのオプションを再度選択したいとします。
ありがとう!