| 123456789101112131415161718192021222324252627282930 |
- //
- // NTESVideoViewController.h
- // NIM
- //
- // Created by chris on 15/4/12.
- // Copyright (c) 2015年 Netease. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <MediaPlayer/MediaPlayer.h>
- @interface NTESVideoViewItem : NSObject
- @property (nonatomic,copy) NSString *itemId;//message Id
- @property (nonatomic,copy) NSString *path;
- @property (nonatomic,copy) NSString *url;
- @property (nonatomic,strong) NIMSession *session;
- @end
- @interface NTESVideoViewController : UIViewController
- - (instancetype)initWithVideoViewItem:(NTESVideoViewItem *)item;
- @property (nonatomic, readonly) MPMoviePlayerController *moviePlayer;
- @end
|