Nevermind. I figured it out. If any one needed the same thing, ill post it.
Code:
NSDate *aDate = [[NSDate alloc] init];
aDate = [pickerView date];
NSCalendar *calendar= [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSCalendarUnit unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
NSDateComponents *dateComponents = [calendar components:unitFlags fromDate:aDate];
double date = [dateComponents hour];
label.text = [NSString stringWithFormat:@"%.0f", date];