20 lines
506 B
Objective-C
20 lines
506 B
Objective-C
//
|
|
// CameraRecordViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/12/9.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import "BaseViewController.h"
|
|
#import "IfishCameraModel.h"
|
|
#import "MBProgressHUD.h"
|
|
#import <GWP2P/GWP2P.h>
|
|
|
|
|
|
@interface CameraRecordViewController : BaseViewController
|
|
@property (nonatomic,strong) IfishCameraModel *camera;
|
|
@property (nonatomic, strong) GWP2PVideoPlayer *player;//摄像头页面
|
|
@property (strong, nonatomic) MBProgressHUD *progressAlert;
|
|
@end
|