NSString+Dropbox.h 389 B

123456789101112131415161718
  1. //
  2. // NSString+Dropbox.h
  3. // DropboxSDK
  4. //
  5. // Created by Brian Smith on 7/19/10.
  6. // Copyright 2010 Dropbox, Inc. All rights reserved.
  7. //
  8. @interface NSString (Dropbox)
  9. // This will take a path for a resource and normalize so you can compare paths
  10. - (NSString*)normalizedDropboxPath;
  11. // Normalizes both paths and compares them
  12. - (BOOL)isEqualToDropboxPath:(NSString*)otherPath;
  13. @end