PlayVideoController.h 560 Bytes
//
//  PlayVideoController.h
//  CNLiveRDVESDKDemo
//
//  Created by iOS on 2017/11/28.
//  Copyright © 2017年 zhulin. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <Photos/PHPhotoLibrary.h>
#import <Photos/PHAssetCollectionChangeRequest.h>

#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]

@interface PlayVideoController : UIViewController

@property (nonatomic,strong)NSString *videoPath;


@end