채널 조회
채널 정보를 조회 할 수 있습니다.
[[TalkPlus sharedInstance] getChannel:channelId success:^(TPChannel *tpChannel) {
// SUCCESS
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];TalkPlus.sharedInstance()?.getChannel(channelId, success: { tpChannel in
// SUCCESS
}, failure: { (errorCode, error) in
// FAILURE
})Last updated