我是iphone开发的新手。我在UIImagePickerController中添加了3种类别(例如,“野生动物”,“非洲动物”和“水上动物”)
例如,如果用户点击“野生动物”,我该如何才能显示该类别的图像?
答案 0 :(得分:0)
为pickerView设置委托。
将为每个项目选择调用以下委托方法
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
行值提供所选项目
在视图中放置imageView,并根据所选值更改图像。
self.imageView.image=[UIImage imageNamed:@"wildanimals.jpg"];