, UITableViewController ( ), , , . Apple WWDC. ( UIDatePicker, ):
viewDidLoad . .
[self.tableView addSubview:self.datePicker]
[self updateDatePickerBounds]
scrollViewDidScroll, :
- (void) scrollViewDidScroll:(UIScrollView *)scrollView
{
[self updateDatePickerBounds];
}
, :
- (void) updateDatePickerBounds
{
CGRect tableBounds = self.tableView.bounds;
CGRect pickerFrame = self.datePicker.frame;
pickerFrame = CGRectMake(tableBounds.origin.x,
tableBounds.origin.y + CGRectGetHeight(tableBounds) - CGRectGetHeight(pickerFrame),
tableBounds.size.width,
pickerFrame.size.height);
self.datePicker.frame = pickerFrame;
}
, , , contentInset .
updateDatePickerBounds viewWillAppear. , .