Commit 423fea1e2d1042d180c71e13982d0f4f2d2b3c76

Authored by yanglingyu
1 parent 3bab62e6

0.0.37

CNLiveCServiceModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveCServiceModule'
11   - s.version = '0.0.36'
  11 + s.version = '0.0.37'
12 12 s.summary = '我的服务内容'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveCServiceModule/Classes/Present/CNLiveServicePresent.m
... ... @@ -120,6 +120,9 @@ static const CGFloat margin = 15;
120 120 if (![showTitle isKindOfClass:[NSNull class]] && !showTitle.boolValue) {
121 121 title = @"";
122 122 }
  123 + if (CNLiveStringIsEmpty(title)) {
  124 + title = @"";
  125 + }
123 126 NSString *serviceId = [dic[@"category"] stringForKey:@"id"];
124 127 if (serviceId.integerValue == 6) {
125 128 cellheight = 145;
... ...