NTESVideoViewController.h 638 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // NTESVideoViewController.h
  3. // NIM
  4. //
  5. // Created by chris on 15/4/12.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <MediaPlayer/MediaPlayer.h>
  10. @interface NTESVideoViewItem : NSObject
  11. @property (nonatomic,copy) NSString *itemId;//message Id
  12. @property (nonatomic,copy) NSString *path;
  13. @property (nonatomic,copy) NSString *url;
  14. @property (nonatomic,strong) NIMSession *session;
  15. @end
  16. @interface NTESVideoViewController : UIViewController
  17. - (instancetype)initWithVideoViewItem:(NTESVideoViewItem *)item;
  18. @property (nonatomic, readonly) MPMoviePlayerController *moviePlayer;
  19. @end