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.
34 lines
688 B
34 lines
688 B
1 year ago
|
//
|
||
|
// VideoCallViewController.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2018/10/30.
|
||
|
// Copyright © 2018年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
|
||
|
#import "baseTabViewController.h"
|
||
|
|
||
|
@interface VideoCallViewController : baseTabViewController
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UIImageView *headView;
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *nameLabel;
|
||
|
|
||
|
@property (strong, nonatomic) IBOutlet UIButton *videoActionBtn;
|
||
|
|
||
|
/**
|
||
|
到期时间
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *endTimeLabel;
|
||
|
|
||
|
/**
|
||
|
续费Btn 默认隐藏
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UIButton *renewalBtn;
|
||
|
|
||
|
@property (weak, nonatomic) IBOutlet UICollectionView *memberCollection;
|
||
|
|
||
|
|
||
|
@end
|