タイムピッカーに問題があり、問題が何であるかを理解できません。これが私のコードです。
timePicker.timeZone = [NSTimeZone localTimeZone];
NSDate *selected = [timePicker date];
NSString *message = [[NSString alloc] initWithFormat:
@"The date and time you selected is: %@", selected];
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Date and Time Selected"
message:message
delegate:nil
cancelButtonTitle:@"Yes, I did."
otherButtonTitles:nil];
[alert show];
たとえば、午後2時55分を選択すると、アラートは「2012-08-1419:55:37+0000」を返します。
それは超単純なものでなければならず、ただそれを見ることができません