int seconds = -(int)[requestTime timeIntervalSinceNow];
int hours = seconds/3600;
Mostly here I ask how many seconds have passed since we received our request. Then with a little mathematical magic, which is divided by the number of seconds per hour, we can get the number of hours passed.
. , "" . xcode , NSDate .
requestTime = [[NSDate date] retain];