NSDate+Difference.h 233 B

12345678910111213141516
  1. //
  2. // NSDate+Difference.h
  3. // Pods
  4. //
  5. // Created by Hannes Tribus on 03/09/15.
  6. //
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NSDate (Difference)
  10. - (NSDate *)dateWithOutTime;
  11. - (NSInteger)daysFromDate:(NSDate *)pDate;
  12. @end