#pragma mark 时间选择
#pragma mark -PickerView
- (void)hidePickerViewForButton
{
NSDate *date= [self.datePicker date];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init] ;
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *string = [formatter stringFromDate:date];
sjdetail.text = string;
self.tempview.frame = CGRectMake(0, self.view.frame.size.height, 320, 280);
}
- (void)hidePickerView
{
self.tempview.frame = CGRectMake(0, self.view.frame.size.height, 320, 280);
}
- (void)showPickerView
{
[[[UIApplication sharedApplication] keyWindow] endEditing:YES];
self.tempview.frame = CGRectMake(0, self.view.frame.size.height-255, 320, 280);
}