RoomInputToolbarView: Add file upload action.

This commit is contained in:
SBiOSoftWhare
2019-07-11 19:03:32 +02:00
parent dc44e021dd
commit f89362781d
4 changed files with 25 additions and 0 deletions
@@ -349,6 +349,19 @@
}
}]];
[actionSheet addAction:[UIAlertAction actionWithTitle:NSLocalizedStringFromTable(@"room_action_send_file", @"Vector", nil)
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
if (weakSelf)
{
typeof(self) self = weakSelf;
self->actionSheet = nil;
[self.delegate roomInputToolbarViewDidTapFileUpload:self];
}
}]];
[actionSheet addAction:[UIAlertAction actionWithTitle:[NSBundle mxk_localizedStringForKey:@"cancel"]
style:UIAlertActionStyleCancel