RoomInputToolbarView: Add file upload action.

This commit is contained in:
SBiOSoftWhare
2019-07-11 19:03:32 +02:00
parent cee3ee7782
commit 843ce9024f
4 changed files with 25 additions and 0 deletions

View File

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