Quantcast
Channel: Active questions tagged uipickerview - Stack Overflow
Viewing all articles
Browse latest Browse all 592

display done button on UIPickerview

$
0
0

I have written the following code in the viewDidLoad method:

categoryPickerView=[[UIPickerView alloc]init];categoryPickerView.alpha = 0;[self.view addSubview:categoryPickerView];categoryPickerView.delegate=self;categoryPickerView.tag=1;

and called this method to hide picker view

- (IBAction)hidePickerView:(id)sender {    [UIView beginAnimations:nil context:nil];    [UIView setAnimationDuration:0.6];    CGAffineTransform transfrom = CGAffineTransformMakeTranslation(0, 200);    categoryPickerView.transform = transfrom;    categoryPickerView.alpha = categoryPickerView.alpha * (-1) + 1;    [UIView commitAnimations];}

My problem is that I want to display a "Done" button on a picker view and the picker view should hide on button click.


Viewing all articles
Browse latest Browse all 592

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>