12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // InCallViewController.h
- // JCSampleOC
- //
- // Created by Ginger on 2017/10/12.
- // Copyright © 2017年 juphoon. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SKInCallViewController : UIViewController
- //video view
- @property (nonatomic, strong) UIView* localView;
- @property (nonatomic, strong) UIView* remoteView;
- @property (nonatomic, strong) UIView* smallView;
- //base view
- @property (nonatomic, strong) IBOutlet UIImageView *backgroudView;
- @property (nonatomic, strong) IBOutlet UIView *mIngHeaderView;
- @property (nonatomic, strong) IBOutlet UILabel *mIngNameLabel;
- @property (nonatomic, strong) IBOutlet UILabel *mIngTimeLabel;
- @property (nonatomic, strong) IBOutlet UILabel *mIngNetWorkLabel;
- @property (nonatomic, strong) IBOutlet UIView *mWaitHeaderView;
- @property (nonatomic, strong) IBOutlet UIImageView *mWaitHeadImage;
- @property (nonatomic, strong) IBOutlet UILabel *mWaitNameLabel;
- @property (nonatomic, strong) IBOutlet UILabel *mWaitInHintLabel;
- @property (nonatomic, strong) IBOutlet UILabel *mWaitOutHintLabel;
- @property (nonatomic, strong) IBOutlet UIView *mInVideoView;
- @property (nonatomic, strong) IBOutlet UIView *mOutView;
- @property (nonatomic, strong) IBOutlet UIView *mIngView;
- // selected 为相机打开状态, default 为相机关闭状态
- @property (nonatomic, strong) IBOutlet UIButton *switchCameraBtn;
- // selected 为保持通话状态, default 为未保持通话状态, disable 为被保持通话状态
- @property (nonatomic, strong) IBOutlet UIButton *holdBtn;
- // selected 为静音状态, default 为正常状态
- @property (nonatomic, strong) IBOutlet UIButton *muteBtn;
- // selected 为听筒模式, default 为扬声器模式
- @property (nonatomic, strong) IBOutlet UIButton *speakerBtn;
- @property (nonatomic, strong) IBOutlet UIButton *endCallBtn;
- - (void)startTimer;
- - (void)stopTimer;
- @end
|