You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.4 KiB

2 years ago
//
// CallViewController.h
// OpenDuo
//
// Created by suleyu on 2017/10/31.
// Copyright © 2017 Agora. All rights reserved.
//
#import <UIKit/UIKit.h>
//默认 限制时间前的提示 的倒数时间 30
#define DefineVideoLimitBeforeShowTime 30
/**
*/
@interface CallViewController : UIViewController
/**
APPID
*/
@property(nonatomic, strong) NSString * appid;
/**
token
*/
@property(nonatomic, strong) NSString * token;
/**
ID
*/
@property(nonatomic, strong) NSString * channelID;
/**
id
*/
@property(nonatomic, strong) NSString * video_id;
/**
uid
*/
@property(nonatomic, strong) NSString *uid;
/**
device_uid
*/
@property(nonatomic, assign) NSInteger device_uid;
/**
*/
@property(nonatomic, assign) CGSize videoSize;
/**
*/
@property (assign, nonatomic) NSInteger limit_time;
/**
*/
@property (assign, nonatomic) NSInteger wait_time;
/**
NO
*/
@property (assign, nonatomic) BOOL isReceiveCall;
@property (weak, nonatomic) IBOutlet UILabel *guanduanLabel;
@property (weak, nonatomic) IBOutlet UILabel *guanduanLabel1;
@property (weak, nonatomic) IBOutlet UILabel *jingyinLabel;
@property (weak, nonatomic) IBOutlet UILabel *jietingLabel;
@property (weak, nonatomic) IBOutlet UILabel *qiehuanLabel;
@end