채널 숨기기 / 보이기

1. 채널 숨기기

현재 참여 중인 채널 목록에 안 나오도록 채널을 숨길 수 있습니다.

[[TalkPlus sharedInstance] hideChannel:channelId success:^{
    // SUCCESS
} failure:^(int errorCode, NSError *error) {
    // FAILURE
}];

2. 채널 보이기

현재 참여 중인 채널 목록에 다시 나오도록 채널을 숨김 해제를 할 수 있습니다.

[[TalkPlus sharedInstance] showChannel:channelId success:^{
    // SUCCESS
} failure:^(int errorCode, NSError *error) {
    // FAILURE
}];

Last updated