// // 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