I have created UIPickerView as following . Now i want to make it resignFirstResponder if user clicks in other place then UIPickerView How could i achieve that. I have created the UIPickerView as following way.Where else could I handle
[pickerView removeFromSuperview];
-(void)pickerview:(id)sender
{
_items =[[NSArray alloc]initWithObjects:@"Hindi",@"English",@"In what city were you born?",
@"What was your childhood nickname?",
@"Type your own question.",nil];
pickerView=[[UIPickerView alloc] initWithFrame:CGRectMake(10,350,300,300)];
pickerView.transform = CGAffineTransformMakeScale(0.75f, 0.75f);
pickerView.delegate = self;
pickerView.dataSource = self;
pickerView.showsSelectionIndicator = YES;
pickerView.backgroundColor = [UIColor lightGrayColor];
[pickerView selectRow:1 inComponent:0 animated:YES];
// [self.view addSubview:pickerView];
[contentView addSubview:pickerView];
}
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView;
{
return 1;
}
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component;
{
return [_items count];
}
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component
{
return[_items objectAtIndex:row];
}
-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{
[Txt_SecurityQue setText:[_items objectAtIndex:row]];
NSLog(@"Did select");
}