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.
38 lines
545 B
38 lines
545 B
// |
|
// BRVideoCallView.m |
|
// tongxin |
|
// |
|
// Created by ecell on 2020/11/23. |
|
// Copyright © 2020 xTT. All rights reserved. |
|
// |
|
|
|
#import "BRVideoCallView.h" |
|
|
|
|
|
@implementation BRVideoCallView |
|
|
|
|
|
- (void)awakeFromNib { |
|
[super awakeFromNib]; |
|
} |
|
|
|
|
|
- (IBAction)hungUp:(id)sender { |
|
if (self.hungUpBlock) { |
|
self.hungUpBlock(); |
|
} |
|
} |
|
|
|
- (IBAction)pickUp:(id)sender { |
|
if (self.pickUpBlock) { |
|
self.pickUpBlock(); |
|
} |
|
} |
|
|
|
- (IBAction)cancelCall:(id)sender { |
|
if (self.cancelBlock) { |
|
self.cancelBlock(); |
|
} |
|
} |
|
|
|
@end
|
|
|