VLCLibrarySearchDisplayDataSource.h 744 B

12345678910111213141516171819
  1. /*****************************************************************************
  2. * VLCLibrarySearchDisplayDataSource.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2017 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Carola Nitz <nitz.carola # gmail.com>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. @interface VLCLibrarySearchDisplayDataSource : NSObject<UITableViewDataSource, UICollectionViewDataSource>
  13. - (NSManagedObject *)objectAtIndex:(NSUInteger)index;
  14. - (void)shouldReloadTableForSearchString:(NSString *)searchString searchableFiles:(NSArray *)files;
  15. @end