VLCOpenInActivity.h 839 B

123456789101112131415161718192021
  1. /*****************************************************************************
  2. * VLCOpenInActivity.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2014 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Marc Etcheverry <marc # taplightsoftware com>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. /// A UIActivity that handles multiple files and presents them in a UIDocumentInteractionController
  13. /// This class is inspired by https://github.com/honkmaster/TTOpenInAppActivity
  14. @interface VLCOpenInActivity : UIActivity
  15. @property (nonatomic, weak) UIViewController *presentingViewController;
  16. @property (nonatomic, weak) UIBarButtonItem *presentingBarButtonItem;
  17. @end