I added a UIPickerView to the UIScrollView, but now the UPickerView does not scroll. When I add it to self.view, it scrolls smoothly. Here is my code
monthsArray = [[NSArray alloc] initWithObjects:@"Jan",@"Feb",@"Mar",@"Apr",@"May",@"Jun",@"Jul",@"Aug",@"Sep",@"Oct",@"Nov",@"Dec",nil];
UIPickerView *objPickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(185,350,100,100)];
objPickerView.userInteractionEnabled=YES;
objPickerView.delegate = self;
objPickerView.showsSelectionIndicator = YES;
[objScrollView addSubView:objPickerView];
I have included the delegate and its methods. take a look at this problem. Thanks in advance. If I do not understand, tell me.
source
share