I have this problem: if I use a uidatepicker, everything goes fine: I have this code:
datePickerView.frame = CGRectMake(0, 264, 320, 216);
datePickerView.bounds = CGRectMake(0, -108, 320, 216);
and the datepicker is half on the bottom (like I want ( only for test))
but if I use a uipickerview, and I use the same code:
genderPickerView.frame = CGRectMake(0, 264, 320, 216);
genderPickerView.bounds = CGRectMake(0, -108, 320, 216);
but the pickerview is on the bottom, not half on the bottom like the datepicker... what's the problem?? thanks in advance!