Commit c382da0b authored by Kevin Reynaldo's avatar Kevin Reynaldo
Browse files

Merge branch 'release/2.10.2'

parents aa6322b6 08281e35
......@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "TapTalk"
s.version = "2.10.1"
s.version = "2.10.2"
s.summary = "TapTalk.io is a complete in-app chat SDK and messaging API. TapTalk.io provides UI-based and code-based implementation & fully customizable."
s.homepage = "https://taptalk.io"
......
......@@ -2371,7 +2371,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.10.1;
MARKETING_VERSION = 2.10.2;
PRODUCT_BUNDLE_IDENTIFIER = io.TapTalk.TapTalk;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
......@@ -2408,7 +2408,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 2.10.1;
MARKETING_VERSION = 2.10.2;
PRODUCT_BUNDLE_IDENTIFIER = io.TapTalk.TapTalk;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
......
......@@ -3412,6 +3412,7 @@ CGPoint center;
[[TAPChatManager sharedManager] removeQuotedMessageObjectWithRoomID:self.currentRoom.roomID];
[self.messageTextView setText:@""];
[self hideInputAccessoryView];
self.tableViewBottomConstraint.constant = 0.0f;
}
else {
//Check if user remove us from the group while we are inside the chat room, handle the case
......@@ -10816,6 +10817,8 @@ CGPoint center;
}
 
- (void)hideInputAccessoryView {
[self.view endEditing:YES];
[self.messageTextView resignFirstResponder];
_isShowAccessoryView = NO;
[self reloadInputViews];
}
......@@ -10869,6 +10872,7 @@ CGPoint center;
[[TAPChatManager sharedManager] removeQuotedMessageObjectWithRoomID:self.currentRoom.roomID];
[self.messageTextView setText:@""];
[self hideInputAccessoryView];
self.tableViewBottomConstraint.constant = 0.0f;
}
else {
if (lastMessage.room.type == RoomTypePersonal && lastMessage.room.isDeleted) {
......@@ -15382,6 +15386,7 @@ CGPoint center;
[[TAPChatManager sharedManager] removeQuotedMessageObjectWithRoomID:self.currentRoom.roomID];
[self.messageTextView setText:@""];
[self hideInputAccessoryView];
self.tableViewBottomConstraint.constant = 0.0f;
}
else {
if (lastMessage.room.type == RoomTypePersonal && lastMessage.room.isDeleted) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment