| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // PlayMenuView.h
- // XMEye
- //
- // Created by Levi on 2016/6/22.
- // Copyright © 2016年 Megatron. All rights reserved.
- //
- /******
- *
- *功能栏界面,包含切换清晰度、云台控制、回放入口等
- *
- *
- */
- #import <UIKit/UIKit.h>
- @protocol PlayMenuViewDelegate <NSObject>
- //显示云台控制
- -(void)showPTZControl;
- //切换码流
- -(void)changeStreamType;
- //回放
- -(void)presentPlayBackViewController;
- @end
- @interface PlayMenuView : UIView
- //云台控制按钮
- @property (nonatomic, strong) UIButton *PTZBtn;
- //切换码流按钮
- @property (nonatomic, strong) UIButton *streamBtn;
- //跳转到回放界面
- @property (nonatomic, strong) UIButton *playBackBtn;
- //报警按钮
- @property (nonatomic, strong) UIButton *alarmBtn;
- @property (nonatomic, weak) id <PlayMenuViewDelegate> delegate;
- //获取当前app版本语言
- @property (nonatomic, strong) NSString *localLanguage;
- //切换码流成功后,改变码流按钮状态,0为高清,1位标清
- @property (nonatomic, assign) int streamType;
- @end
|