我有一个UIPickerView
显示项目数组的。当我选择一个项目时,它可以传递给我所有的视图控制器。现在我的问题是在移动到不同view controllers
并返回后UIPIckerView
它显示第一个数组项目而不是我选择的项目。如何查看所选项目?
//in viewDidLoad()
itemsArray = [[NSArray alloc] initWithObjects:@"5", @"10", @"20", @"30", @"50",@"100", nil];
// if i select 20 and moved to other pages of my controllers and
// return to the UIPickerView i can see the 5 as selected not the 20
有什么建议么?