/ SDKs / iOS
SDKs
Chat SDKs iOS v4
Chat SDKs iOS
Chat SDKs
iOS
Version 4

Deprecated

Copy link

This page lists all the deprecated APIs and features in Sendbird Chat. They are only supported for customers who started using them before they were deprecated.


BaseMessage isResendable() method

Copy link

As of v4.34.2, the isResendable() function on BaseMessage has been renamed to isResendable(in:). The new method requires a BaseChannel parameter to determine if a message can be resent in a specific channel context.

// Deprecated
let canResend = message.isResendable()

// New method
let canResend = message.isResendable(in: channel)

Explicit and classic block modes

Copy link

In group channels, both the explicit and classic block modes are deprecated. Sendbird application now provides two blocking options instead: excluding blocked users when sending channel invitations and turning off push notifications from blocked users. Refer to the block and unblock other members page to learn more.