Skip to content

Commit 8f34486

Browse files
committed
* Improved usability of channel delegates and connection delegates.
1 parent d294a51 commit 8f34486

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
### v3.0.33(Jan 28, 2017)
4+
* Improved usability of channel delegates and connection delegates.
5+
36
### v3.0.32(Jan 20, 2017)
47
* Modified network error code.
58

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://cocoapods.org/pods/SendBirdSDK)
55
[![Languages](https://img.shields.io/badge/language-Objective--C%20%7C%20Swift-orange.svg)](https://github.com/smilefam/sendbird-ios-framework)
6-
[![CocoaPods](https://img.shields.io/badge/pod-v3.0.32-green.svg)](https://cocoapods.org/pods/SendBirdSDK)
6+
[![CocoaPods](https://img.shields.io/badge/pod-v3.0.33-green.svg)](https://cocoapods.org/pods/SendBirdSDK)
77
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
88
[![Commercial License](https://img.shields.io/badge/license-Commercial-brightgreen.svg)](https://github.com/smilefam/sendbird-ios-framework/blob/master/LICENSE.md)
99

SendBirdSDK.framework/Headers/SBDMain.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@
5656
/**
5757
* Manages registered `SBDConnectionDelegate`.
5858
*/
59-
@property (nonatomic, strong, readonly, nullable) NSMutableDictionary<NSString *, NSValue *> *connectionDelegatesDictionary;
59+
@property (nonatomic, strong, readonly, nullable) NSMapTable<NSString *, id<SBDConnectionDelegate>> *connectionDelegatesDictionary;
6060

6161
/**
6262
* Manages registered `SBDChannelDelegate`.
6363
*/
64-
@property (nonatomic, strong, readonly, nullable) NSMutableDictionary<NSString *, NSValue *> *channelDelegatesDictionary;
64+
@property (nonatomic, strong, readonly, nullable) NSMapTable<NSString *, id<SBDChannelDelegate>> *channelDelegatesDictionary;
6565

6666
- (nullable instancetype)init;
6767

SendBirdSDK.framework/Info.plist

0 Bytes
Binary file not shown.

SendBirdSDK.framework/SendBirdSDK

-99.3 KB
Binary file not shown.

SendBirdSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SendBirdSDK"
3-
s.version = "3.0.32"
3+
s.version = "3.0.33"
44
s.summary = "SendBird iOS Framework"
55
s.description = "Messaging and Chat API for Mobile Apps and Websites"
66
s.homepage = "https://sendbird.com"

0 commit comments

Comments
 (0)