Skip to content

Commit 6078452

Browse files
committed
* Supported - Reaction feature
1 parent 43b2e72 commit 6078452

File tree

27 files changed

+72
-72
lines changed

27 files changed

+72
-72
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
### v1.0.12 (July 10, 2020)
3+
### v1.1.0 (July 10, 2020)
44
* Supported - Reaction feature
55
* Added classes
66
* `SBUReactionsViewController`

SendBirdUIKit.framework.dSYM/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.0.12</string>
16+
<string>1.1.0</string>
1717
<key>CFBundleVersion</key>
1818
<string>1</string>
1919
</dict>
0 Bytes
Binary file not shown.

SendBirdUIKit.framework/Assets.car

0 Bytes
Binary file not shown.

SendBirdUIKit.framework/Headers/SBUChannelViewController.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ open class SBUChannelViewController: UIViewController, UITableViewDelegate, UITa
793793
/// - message: `SBDBaseMessage` object to update
794794
/// - emojiKey: set emoji key
795795
/// - didSelect: set reaction state
796-
/// - Since: 1.0.12
796+
/// - Since: 1.1.0
797797
public func setReaction(message: SBDBaseMessage, emojiKey: String, didSelect: Bool) {
798798

799799
switch didSelect {
@@ -1560,7 +1560,7 @@ open class SBUChannelViewController: UIViewController, UITableViewDelegate, UITa
15601560
/// - Parameters:
15611561
/// - cell: Message cell object
15621562
/// - emojiKey: emoji key
1563-
/// - Since: 1.0.12
1563+
/// - Since: 1.1.0
15641564
open func setTapEmojiGestureHandler(_ cell: SBUBaseMessageCell, emojiKey: String) {
15651565
guard let currentUser = SBUGlobals.CurrentUser else { return }
15661566
let message = cell.message
@@ -1574,7 +1574,7 @@ open class SBUChannelViewController: UIViewController, UITableViewDelegate, UITa
15741574
/// - Parameters:
15751575
/// - cell: Message cell object
15761576
/// - emojiKey: emoji key
1577-
/// - Since: 1.0.12
1577+
/// - Since: 1.1.0
15781578
open func setLongTapEmojiGestureHandler(_ cell: SBUBaseMessageCell, emojiKey: String) {
15791579
guard let channel = self.channel else { return }
15801580
let message = cell.message
@@ -1588,7 +1588,7 @@ open class SBUChannelViewController: UIViewController, UITableViewDelegate, UITa
15881588
// MARK: - Reaction relations
15891589
/// This function presents `SBUEmojiListViewController`
15901590
/// - Parameter message: `SBDBaseMessage` object
1591-
/// - Since: 1.0.12
1591+
/// - Since: 1.1.0
15921592
open func showEmojiListModal(message: SBDBaseMessage) {
15931593
let emojiListVC = SBUEmojiListViewController(message: message)
15941594
emojiListVC.modalPresentationStyle = .custom

SendBirdUIKit.framework/Headers/SendBirdUIKit-Swift.h

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
741741
- (void)loadChannelWithChannelUrl:(NSString * _Nullable)channelUrl;
742742
/// This function is used to add or delete reactions.
743743
/// since:
744-
/// 1.0.12
744+
/// 1.1.0
745745
/// \param message <code>SBDBaseMessage</code> object to update
746746
///
747747
/// \param emojiKey set emoji key
@@ -791,23 +791,23 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
791791
- (void)setLongTapGestureHandler:(SBUBaseMessageCell * _Nonnull)cell message:(SBDBaseMessage * _Nonnull)message indexPath:(NSIndexPath * _Nonnull)indexPath;
792792
/// This function sets the cell’s tap emoji gesture handling.
793793
/// since:
794-
/// 1.0.12
794+
/// 1.1.0
795795
/// \param cell Message cell object
796796
///
797797
/// \param emojiKey emoji key
798798
///
799799
- (void)setTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
800800
/// This function sets the cell’s long tap emoji gesture handling.
801801
/// since:
802-
/// 1.0.12
802+
/// 1.1.0
803803
/// \param cell Message cell object
804804
///
805805
/// \param emojiKey emoji key
806806
///
807807
- (void)setLongTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
808808
/// This function presents <code>SBUEmojiListViewController</code>
809809
/// since:
810-
/// 1.0.12
810+
/// 1.1.0
811811
/// \param message <code>SBDBaseMessage</code> object
812812
///
813813
- (void)showEmojiListModalWithMessage:(SBDBaseMessage * _Nonnull)message;
@@ -2636,7 +2636,7 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
26362636
- (void)loadChannelWithChannelUrl:(NSString * _Nullable)channelUrl;
26372637
/// This function is used to add or delete reactions.
26382638
/// since:
2639-
/// 1.0.12
2639+
/// 1.1.0
26402640
/// \param message <code>SBDBaseMessage</code> object to update
26412641
///
26422642
/// \param emojiKey set emoji key
@@ -2686,23 +2686,23 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
26862686
- (void)setLongTapGestureHandler:(SBUBaseMessageCell * _Nonnull)cell message:(SBDBaseMessage * _Nonnull)message indexPath:(NSIndexPath * _Nonnull)indexPath;
26872687
/// This function sets the cell’s tap emoji gesture handling.
26882688
/// since:
2689-
/// 1.0.12
2689+
/// 1.1.0
26902690
/// \param cell Message cell object
26912691
///
26922692
/// \param emojiKey emoji key
26932693
///
26942694
- (void)setTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
26952695
/// This function sets the cell’s long tap emoji gesture handling.
26962696
/// since:
2697-
/// 1.0.12
2697+
/// 1.1.0
26982698
/// \param cell Message cell object
26992699
///
27002700
/// \param emojiKey emoji key
27012701
///
27022702
- (void)setLongTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
27032703
/// This function presents <code>SBUEmojiListViewController</code>
27042704
/// since:
2705-
/// 1.0.12
2705+
/// 1.1.0
27062706
/// \param message <code>SBDBaseMessage</code> object
27072707
///
27082708
- (void)showEmojiListModalWithMessage:(SBDBaseMessage * _Nonnull)message;
@@ -4533,7 +4533,7 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
45334533
- (void)loadChannelWithChannelUrl:(NSString * _Nullable)channelUrl;
45344534
/// This function is used to add or delete reactions.
45354535
/// since:
4536-
/// 1.0.12
4536+
/// 1.1.0
45374537
/// \param message <code>SBDBaseMessage</code> object to update
45384538
///
45394539
/// \param emojiKey set emoji key
@@ -4583,23 +4583,23 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
45834583
- (void)setLongTapGestureHandler:(SBUBaseMessageCell * _Nonnull)cell message:(SBDBaseMessage * _Nonnull)message indexPath:(NSIndexPath * _Nonnull)indexPath;
45844584
/// This function sets the cell’s tap emoji gesture handling.
45854585
/// since:
4586-
/// 1.0.12
4586+
/// 1.1.0
45874587
/// \param cell Message cell object
45884588
///
45894589
/// \param emojiKey emoji key
45904590
///
45914591
- (void)setTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
45924592
/// This function sets the cell’s long tap emoji gesture handling.
45934593
/// since:
4594-
/// 1.0.12
4594+
/// 1.1.0
45954595
/// \param cell Message cell object
45964596
///
45974597
/// \param emojiKey emoji key
45984598
///
45994599
- (void)setLongTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
46004600
/// This function presents <code>SBUEmojiListViewController</code>
46014601
/// since:
4602-
/// 1.0.12
4602+
/// 1.1.0
46034603
/// \param message <code>SBDBaseMessage</code> object
46044604
///
46054605
- (void)showEmojiListModalWithMessage:(SBDBaseMessage * _Nonnull)message;
@@ -6428,7 +6428,7 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
64286428
- (void)loadChannelWithChannelUrl:(NSString * _Nullable)channelUrl;
64296429
/// This function is used to add or delete reactions.
64306430
/// since:
6431-
/// 1.0.12
6431+
/// 1.1.0
64326432
/// \param message <code>SBDBaseMessage</code> object to update
64336433
///
64346434
/// \param emojiKey set emoji key
@@ -6478,23 +6478,23 @@ SWIFT_CLASS("_TtC13SendBirdUIKit24SBUChannelViewController")
64786478
- (void)setLongTapGestureHandler:(SBUBaseMessageCell * _Nonnull)cell message:(SBDBaseMessage * _Nonnull)message indexPath:(NSIndexPath * _Nonnull)indexPath;
64796479
/// This function sets the cell’s tap emoji gesture handling.
64806480
/// since:
6481-
/// 1.0.12
6481+
/// 1.1.0
64826482
/// \param cell Message cell object
64836483
///
64846484
/// \param emojiKey emoji key
64856485
///
64866486
- (void)setTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
64876487
/// This function sets the cell’s long tap emoji gesture handling.
64886488
/// since:
6489-
/// 1.0.12
6489+
/// 1.1.0
64906490
/// \param cell Message cell object
64916491
///
64926492
/// \param emojiKey emoji key
64936493
///
64946494
- (void)setLongTapEmojiGestureHandler:(SBUBaseMessageCell * _Nonnull)cell emojiKey:(NSString * _Nonnull)emojiKey;
64956495
/// This function presents <code>SBUEmojiListViewController</code>
64966496
/// since:
6497-
/// 1.0.12
6497+
/// 1.1.0
64986498
/// \param message <code>SBDBaseMessage</code> object
64996499
///
65006500
- (void)showEmojiListModalWithMessage:(SBDBaseMessage * _Nonnull)message;

0 commit comments

Comments
 (0)