Pagination 처리가 되어 있어 다음 페이지 조회를 위해서는 이전 조회 시에 리턴받은 TPChannel 객체 중 마지막 객체를 넣으면 그 다음 페이지를 조회할 수 있습니다.
[[TalkPlus sharedInstance] getPublicChannels:lastChannel
success:^(NSArray<TPChannel *> *tpChannels, BOOL hasNext) {
// SUCCESS
// If 'hasNext' is YES, call this method with the last object in 'tpChannels'.
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];
TalkPlus.sharedInstance()?.getPublicChannels(lastChannel, success: { tpChannels, hasNext in// SUCCESS// If 'hasNext' is true, call this method with the last object in 'tpChannels'.}, failure: { (errorCode, error) in// FAILURE})
2. 현재 참여중인 채널 목록 조회
현재 참여중인 채널 목록을 조회할 수 있습니다.
Pagination 처리가 되어 있어 다음 페이지 조회를 위해서는 이전 조회 시에 리턴받은 TPChannel 객체 중 마지막 객체를 넣으면 그 다음 페이지를 조회할 수 있습니다.
[[TalkPlus sharedInstance] getChannels:lastChannel
success:^(NSArray<TPChannel *> *tpChannels, BOOL hasNext) {
// SUCCESS
// If 'hasNext' is YES, call this method with the last object in 'tpChannels'.
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];
TalkPlus.sharedInstance()?.getChannels(lastChannel, success: { tpChannels, hasNext in// SUCCESS// If 'hasNext' is true, call this method with the last object in 'tpChannels'.}, failure: { (errorCode, error) in// FAILURE})
3. 숨긴 채널 목록 조회
사용자가 hideChannel 메소드를 호출하여 숨긴 채널을 조회할 수 있습니다.
Pagination 처리가 되어 있어 다음 페이지 조회를 위해서는 이전 조회 시에 리턴받은 TPChannel 객체 중 마지막 객체를 넣으면 그 다음 페이지를 조회할 수 있습니다.
[[TalkPlus sharedInstance] getHiddenChannels:lastChannel
success:^(NSArray<TPChannel *> *tpChannels, BOOL hasNext) {
// SUCCESS
// If 'hasNext' is YES, call this method with the last object in 'tpChannels'.
} failure:^(int errorCode, NSError *error) {
// FAILURE
}];
TalkPlus.sharedInstance()?.getHiddenChannels(lastChannel, success: { tpChannels, hasNext in// SUCCESS// If 'hasNext' is true, call this method with the last object in 'tpChannels'.}, failure: { (errorCode, error) in// FAILURE})code