Conference call: Add ongoing conference call banner

This commit is contained in:
manuroe
2016-08-08 18:40:22 +02:00
parent 577e067825
commit 06c106b972
6 changed files with 129 additions and 3 deletions
@@ -127,8 +127,26 @@
}
}
- (void)displayOngoingConferenceCall:(NSString *)labelText
{
[self reset];
if (labelText.length)
{
self.backgroundColor = kVectorColorPinkRed;
self.iconImageView.image = [UIImage imageNamed:@"typing"];
self.messageLabel.text = labelText;
self.messageLabel.textColor = UIColor.whiteColor;
self.messageLabel.hidden = NO;
}
}
- (void)reset
{
self.backgroundColor = UIColor.clearColor;
self.iconImageView.hidden = YES;
self.messageLabel.hidden = YES;