채널 Freeze / Unfreeze
1. 채널 Freeze
채널을 프리징 합니다 (메시지 발송 기능 정지)
[[TalkPlus sharedInstance] freezeChannel:channelId success:^{
// SUCCESS
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];TalkPlus.sharedInstance()?.freezeChannel(channelId, success: {
// SUCCESS
}, failure: { (errorCode, error) in
// FAILURE
})2. 채널 Unfreeze
채널의 프리징 상태를 해제합니다 (메시지 발송 가능)
[[TalkPlus sharedInstance] unfreezeChannel:channelId success:^{
// SUCCESS
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];TalkPlus.sharedInstance()?.unfreezeChannel(channelId, success: {
// SUCCESS
}, failure: { (errorCode, error) in
// FAILURE
})Last updated