Commit 9e2b356f6eb695fd77291505210cf703b6404196
1 parent
80063400
0.5.9 修改高度
Showing
3 changed files
with
11 additions
and
2 deletions
CNLiveNewIMAManagerKit.podspec
CNLiveNewIMAManagerKit/Classes/TIMCategory/IMAConversation+ShowAPIs.m
CNLiveNewIMAManagerKit/Classes/TIMCategory/TIMElem+ShowAPIs.m
| ... | ... | @@ -551,6 +551,10 @@ |
| 551 | 551 | { |
| 552 | 552 | return [NSClassFromString(@"CNOrderRemindCell") class]; |
| 553 | 553 | } |
| 554 | + else if (msg.type == EIMAMSG_LiveRemind) | |
| 555 | + { | |
| 556 | + return [NSClassFromString(@"CNSeviceNoticeCell") class]; | |
| 557 | + } | |
| 554 | 558 | else if (msg.type == EIMAMSG_CommuntyOrder) |
| 555 | 559 | { |
| 556 | 560 | return [NSClassFromString(@"CNCommuntyMessageCell") class]; |
| ... | ... | @@ -837,6 +841,11 @@ |
| 837 | 841 | return CGSizeMake(width, (180+10)*RATIO); |
| 838 | 842 | } |
| 839 | 843 | break; |
| 844 | + case EIMAMSG_LiveRemind: | |
| 845 | + { | |
| 846 | + return CGSizeMake(width, (180+10)*RATIO); | |
| 847 | + } | |
| 848 | + break; | |
| 840 | 849 | case EIMAMSG_CommuntyOrder: |
| 841 | 850 | { |
| 842 | 851 | NSDictionary * repairOrderDict = [packMsg.customMsgData objectForKey:@"repairOrder"]; | ... | ... |