VLCMigrationViewController.h 413 B

1234567891011121314151617
  1. //
  2. // VLCMigrationViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Carola Nitz on 17/02/15.
  6. // Copyright (c) 2015 VideoLAN. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface VLCMigrationViewController : UIViewController
  10. @property(nonatomic) IBOutlet UILabel *statusLabel;
  11. @property(nonatomic) IBOutlet UIActivityIndicatorView *spinner;
  12. @property(nonatomic, copy) void (^completionHandler)();
  13. @end