Commit 079680cade75cff2bec4d461f2311015cdacc263

Authored by yanglingyu
1 parent c8438b89

取值修改

CNLiveVideoClassifyKit.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveVideoClassifyKit'
11   - s.version = '0.0.29'
  11 + s.version = '0.0.30'
12 12 s.summary = '视讯头部一二级菜单组件'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveVideoClassifyKit/Classes/ClassifyCategory/Controller/CNLiveSubSegmentController.m
... ... @@ -295,7 +295,7 @@
295 295 NSMutableArray *array = [NSMutableArray array];
296 296 for (CNCategoryGetChannelModel *model in self.pageListArr) {
297 297 if (!CNLiveStringIsEmpty(model.showName) && !CNLiveStringIsEmpty(model.pageType)) {
298   - [self.titles addObject:model.name];
  298 + [self.titles addObject:model.showName];
299 299 [array addObject:model];
300 300 if (!CNLiveStringIsEmpty(model.defaultPage) && [model.defaultPage isEqualToString:@"1"]) {
301 301 self.ld_currentIndex = [self.pageListArr indexOfObject:model];
... ...