NSString+SupportedMedia.h 287 B

1234567891011121314151617
  1. //
  2. // NSString+SupportedMedia.h
  3. // VLC for iOS
  4. //
  5. // Created by Gleb on 6/1/13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface NSString (SupportedMedia)
  10. - (BOOL)isSupportedMediaFormat;
  11. - (BOOL)isSupportedSubtitleFormat;
  12. @end