KUtil.m 410 B

123456789101112131415161718192021
  1. //
  2. // KUtil.m
  3. // KacheDemo
  4. //
  5. // Created by jiajun on 7/25/12.
  6. // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #import "KUtil.h"
  9. @implementation KUtil
  10. + (NSInteger)nowTimestamp {
  11. return (NSInteger)ceil([[NSDate date] timeIntervalSince1970]); // Use Int For Computing.
  12. }
  13. + (NSInteger)expiredTimestampForLife:(NSInteger)duration {
  14. return [KUtil nowTimestamp] + duration;
  15. }
  16. @end