Skip to content

Commit 11b029d

Browse files
committed
修改图片资源域名
1 parent 1b6f348 commit 11b029d

7 files changed

Lines changed: 51 additions & 41 deletions

File tree

Example/MessageDisplayKitCoreDataExample/MessageDisplayKitCoreDataExample/XHDemoWeChatMessageTableViewController.m

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ @implementation XHDemoWeChatMessageTableViewController
2525
- (XHMessage *)getTextMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
2626
XHMessage *textMessage = [[XHMessage alloc] initWithText:@"Call Me 15915895880.这是华捷微信,为什么模仿这个页面效果呢?希望微信团队能看到我们在努力,请微信团队给个机会,让我好好的努力靠近大神,希望自己也能发亮,好像有点过分的希望了,如果大家喜欢这个开源库,请大家帮帮忙支持这个开源库吧!我是Jack,叫华仔也行,曾宪华就是我啦!" sender:@"华仔" timestamp:[NSDate distantPast]];
2727
textMessage.avatar = [UIImage imageNamed:@"avatar"];
28-
textMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
28+
textMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
2929
textMessage.bubbleMessageType = bubbleMessageType;
3030

3131
return textMessage;
3232
}
3333

3434
- (XHMessage *)getPhotoMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
35-
XHMessage *photoMessage = [[XHMessage alloc] initWithPhoto:nil thumbnailUrl:@"http://www.pailixiu.com/jack/networkPhoto.png" originPhotoUrl:nil sender:@"Jack" timestamp:[NSDate date]];
35+
XHMessage *photoMessage = [[XHMessage alloc] initWithPhoto:nil thumbnailUrl:@"http://childapp.pailixiu.com/jack/networkPhoto.png" originPhotoUrl:nil sender:@"Jack" timestamp:[NSDate date]];
3636
photoMessage.avatar = [UIImage imageNamed:@"avatar"];
37-
photoMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
37+
photoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
3838
photoMessage.bubbleMessageType = bubbleMessageType;
3939

4040
return photoMessage;
@@ -44,7 +44,7 @@ - (XHMessage *)getVideoMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleM
4444
NSString *videoPath = [[NSBundle mainBundle] pathForResource:@"IMG_1555.MOV" ofType:@""];
4545
XHMessage *videoMessage = [[XHMessage alloc] initWithVideoConverPhoto:[XHMessageVideoConverPhotoFactory videoConverPhotoWithVideoPath:videoPath] videoPath:videoPath videoUrl:nil sender:@"Jayson" timestamp:[NSDate date]];
4646
videoMessage.avatar = [UIImage imageNamed:@"avatar"];
47-
videoMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
47+
videoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
4848
videoMessage.bubbleMessageType = bubbleMessageType;
4949

5050
return videoMessage;
@@ -53,7 +53,7 @@ - (XHMessage *)getVideoMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleM
5353
- (XHMessage *)getVoiceMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
5454
XHMessage *voiceMessage = [[XHMessage alloc] initWithVoicePath:nil voiceUrl:nil voiceDuration:@"1" sender:@"Jayson" timestamp:[NSDate date]]; initWithVoicePath: voiceUrl: sender: timestamp:
5555
voiceMessage.avatar = [UIImage imageNamed:@"avatar"];
56-
voiceMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
56+
voiceMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
5757
voiceMessage.bubbleMessageType = bubbleMessageType;
5858

5959
return voiceMessage;
@@ -62,7 +62,7 @@ - (XHMessage *)getVoiceMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleM
6262
- (XHMessage *)getEmotionMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
6363
XHMessage *emotionMessage = [[XHMessage alloc] initWithEmotionPath:[[NSBundle mainBundle] pathForResource:@"Demo0.gif" ofType:nil] sender:@"Jayson" timestamp:[NSDate date]];
6464
emotionMessage.avatar = [UIImage imageNamed:@"avatar"];
65-
emotionMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
65+
emotionMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
6666
emotionMessage.bubbleMessageType = bubbleMessageType;
6767

6868
return emotionMessage;
@@ -71,7 +71,7 @@ - (XHMessage *)getEmotionMessageWithBubbleMessageType:(XHBubbleMessageType)bubbl
7171
- (XHMessage *)getGeolocationsMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
7272
XHMessage *localPositionMessage = [[XHMessage alloc] initWithLocalPositionPhoto:[UIImage imageNamed:@"Fav_Cell_Loc"] geolocations:@"中国广东省广州市天河区东圃二马路121号" location:[[CLLocation alloc] initWithLatitude:23.110387 longitude:113.399444] sender:@"Jack" timestamp:[NSDate date]];
7373
localPositionMessage.avatar = [UIImage imageNamed:@"avatar"];
74-
localPositionMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
74+
localPositionMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
7575
localPositionMessage.bubbleMessageType = bubbleMessageType;
7676

7777
return localPositionMessage;
@@ -430,7 +430,7 @@ - (void)loadMoreMessagesScrollTotop {
430430
- (void)didSendText:(NSString *)text fromSender:(NSString *)sender onDate:(NSDate *)date {
431431
XHMessage *textMessage = [[XHMessage alloc] initWithText:text sender:sender timestamp:date];
432432
textMessage.avatar = [UIImage imageNamed:@"avatar"];
433-
textMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
433+
textMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
434434
[self insertNewObject:textMessage];
435435
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeText];
436436
[self scrollToBottomAnimated:YES];
@@ -446,7 +446,7 @@ - (void)didSendText:(NSString *)text fromSender:(NSString *)sender onDate:(NSDat
446446
- (void)didSendPhoto:(UIImage *)photo fromSender:(NSString *)sender onDate:(NSDate *)date {
447447
XHMessage *photoMessage = [[XHMessage alloc] initWithPhoto:photo thumbnailUrl:nil originPhotoUrl:nil sender:sender timestamp:date];
448448
photoMessage.avatar = [UIImage imageNamed:@"avatar"];
449-
photoMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
449+
photoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
450450
[self addMessage:photoMessage];
451451
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypePhoto];
452452
}
@@ -461,7 +461,7 @@ - (void)didSendPhoto:(UIImage *)photo fromSender:(NSString *)sender onDate:(NSDa
461461
- (void)didSendVideoConverPhoto:(UIImage *)videoConverPhoto videoPath:(NSString *)videoPath fromSender:(NSString *)sender onDate:(NSDate *)date {
462462
XHMessage *videoMessage = [[XHMessage alloc] initWithVideoConverPhoto:videoConverPhoto videoPath:videoPath videoUrl:nil sender:sender timestamp:date];
463463
videoMessage.avatar = [UIImage imageNamed:@"avatar"];
464-
videoMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
464+
videoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
465465
[self addMessage:videoMessage];
466466
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeVideo];
467467
}
@@ -477,7 +477,7 @@ - (void)didSendVideoConverPhoto:(UIImage *)videoConverPhoto videoPath:(NSString
477477
- (void)didSendVoice:(NSString *)voicePath voiceDuration:(NSString*)voiceDuration fromSender:(NSString *)sender onDate:(NSDate *)date {
478478
XHMessage *voiceMessage = [[XHMessage alloc] initWithVoicePath:voicePath voiceUrl:nil voiceDuration:voiceDuration sender:sender timestamp:date];
479479
voiceMessage.avatar = [UIImage imageNamed:@"avatar"];
480-
voiceMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
480+
voiceMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
481481
[self addMessage:voiceMessage];
482482
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeVoice];
483483
}
@@ -493,7 +493,7 @@ - (void)didSendEmotion:(NSString *)emotionPath fromSender:(NSString *)sender onD
493493
if (emotionPath) {
494494
XHMessage *emotionMessage = [[XHMessage alloc] initWithEmotionPath:emotionPath sender:sender timestamp:date];
495495
emotionMessage.avatar = [UIImage imageNamed:@"avatar"];
496-
emotionMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
496+
emotionMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
497497
[self addMessage:emotionMessage];
498498
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeEmotion];
499499

@@ -508,7 +508,7 @@ - (void)didSendEmotion:(NSString *)emotionPath fromSender:(NSString *)sender onD
508508
- (void)didSendGeoLocationsPhoto:(UIImage *)geoLocationsPhoto geolocations:(NSString *)geolocations location:(CLLocation *)location fromSender:(NSString *)sender onDate:(NSDate *)date {
509509
XHMessage *geoLocationsMessage = [[XHMessage alloc] initWithLocalPositionPhoto:geoLocationsPhoto geolocations:geolocations location:location sender:sender timestamp:date];
510510
geoLocationsMessage.avatar = [UIImage imageNamed:@"avatar"];
511-
geoLocationsMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
511+
geoLocationsMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
512512
[self addMessage:geoLocationsMessage];
513513
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeLocalPosition];
514514
}

Example/MessageDisplayKitStoryBoradExample/MessageDisplayKitStoryBoradExample/XHDemoWeChatMessageTableViewController.m

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ @implementation XHDemoWeChatMessageTableViewController
2323
- (XHMessage *)getTextMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
2424
XHMessage *textMessage = [[XHMessage alloc] initWithText:@"Call Me 15915895880.这是华捷微信,为什么模仿这个页面效果呢?希望微信团队能看到我们在努力,请微信团队给个机会,让我好好的努力靠近大神,希望自己也能发亮,好像有点过分的希望了,如果大家喜欢这个开源库,请大家帮帮忙支持这个开源库吧!我是Jack,叫华仔也行,曾宪华就是我啦!" sender:@"华仔" timestamp:[NSDate distantPast]];
2525
textMessage.avatar = [UIImage imageNamed:@"avatar"];
26-
textMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
26+
textMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
2727
textMessage.bubbleMessageType = bubbleMessageType;
2828

2929
return textMessage;
3030
}
3131

3232
- (XHMessage *)getPhotoMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
33-
XHMessage *photoMessage = [[XHMessage alloc] initWithPhoto:nil thumbnailUrl:@"http://www.pailixiu.com/jack/networkPhoto.png" originPhotoUrl:nil sender:@"Jack" timestamp:[NSDate date]];
33+
XHMessage *photoMessage = [[XHMessage alloc] initWithPhoto:nil thumbnailUrl:@"http://childapp.pailixiu.com/jack/networkPhoto.png" originPhotoUrl:nil sender:@"Jack" timestamp:[NSDate date]];
3434
photoMessage.avatar = [UIImage imageNamed:@"avatar"];
35-
photoMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
35+
photoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
3636
photoMessage.bubbleMessageType = bubbleMessageType;
3737

3838
return photoMessage;
@@ -42,7 +42,7 @@ - (XHMessage *)getVideoMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleM
4242
NSString *videoPath = [[NSBundle mainBundle] pathForResource:@"IMG_1555.MOV" ofType:@""];
4343
XHMessage *videoMessage = [[XHMessage alloc] initWithVideoConverPhoto:[XHMessageVideoConverPhotoFactory videoConverPhotoWithVideoPath:videoPath] videoPath:videoPath videoUrl:nil sender:@"Jayson" timestamp:[NSDate date]];
4444
videoMessage.avatar = [UIImage imageNamed:@"avatar"];
45-
videoMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
45+
videoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
4646
videoMessage.bubbleMessageType = bubbleMessageType;
4747

4848
return videoMessage;
@@ -51,7 +51,7 @@ - (XHMessage *)getVideoMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleM
5151
- (XHMessage *)getVoiceMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType isRead:(BOOL)isRead {
5252
XHMessage *voiceMessage = [[XHMessage alloc] initWithVoicePath:nil voiceUrl:nil voiceDuration:@"1" sender:@"Jayson" timestamp:[NSDate date] isRead:isRead];
5353
voiceMessage.avatar = [UIImage imageNamed:@"avatar"];
54-
voiceMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
54+
voiceMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
5555
voiceMessage.bubbleMessageType = bubbleMessageType;
5656

5757
return voiceMessage;
@@ -60,7 +60,7 @@ - (XHMessage *)getVoiceMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleM
6060
- (XHMessage *)getEmotionMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
6161
XHMessage *emotionMessage = [[XHMessage alloc] initWithEmotionPath:[[NSBundle mainBundle] pathForResource:@"Demo0.gif" ofType:nil] sender:@"Jayson" timestamp:[NSDate date]];
6262
emotionMessage.avatar = [UIImage imageNamed:@"avatar"];
63-
emotionMessage.avatarUrl = @"http://www.pailixiu.com/jack/JieIcon@2x.png";
63+
emotionMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/JieIcon@2x.png";
6464
emotionMessage.bubbleMessageType = bubbleMessageType;
6565

6666
return emotionMessage;
@@ -69,7 +69,7 @@ - (XHMessage *)getEmotionMessageWithBubbleMessageType:(XHBubbleMessageType)bubbl
6969
- (XHMessage *)getGeolocationsMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
7070
XHMessage *localPositionMessage = [[XHMessage alloc] initWithLocalPositionPhoto:[UIImage imageNamed:@"Fav_Cell_Loc"] geolocations:@"中国广东省广州市天河区东圃二马路121号" location:[[CLLocation alloc] initWithLatitude:23.110387 longitude:113.399444] sender:@"Jack" timestamp:[NSDate date]];
7171
localPositionMessage.avatar = [UIImage imageNamed:@"avatar"];
72-
localPositionMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
72+
localPositionMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
7373
localPositionMessage.bubbleMessageType = bubbleMessageType;
7474

7575
return localPositionMessage;
@@ -271,7 +271,7 @@ - (void)loadMoreMessagesScrollTotop {
271271
- (void)didSendText:(NSString *)text fromSender:(NSString *)sender onDate:(NSDate *)date {
272272
XHMessage *textMessage = [[XHMessage alloc] initWithText:text sender:sender timestamp:date];
273273
textMessage.avatar = [UIImage imageNamed:@"avatar"];
274-
textMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
274+
textMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
275275
[self addMessage:textMessage];
276276
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeText];
277277
}
@@ -286,7 +286,7 @@ - (void)didSendText:(NSString *)text fromSender:(NSString *)sender onDate:(NSDat
286286
- (void)didSendPhoto:(UIImage *)photo fromSender:(NSString *)sender onDate:(NSDate *)date {
287287
XHMessage *photoMessage = [[XHMessage alloc] initWithPhoto:photo thumbnailUrl:nil originPhotoUrl:nil sender:sender timestamp:date];
288288
photoMessage.avatar = [UIImage imageNamed:@"avatar"];
289-
photoMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
289+
photoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
290290
[self addMessage:photoMessage];
291291
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypePhoto];
292292
}
@@ -301,7 +301,7 @@ - (void)didSendPhoto:(UIImage *)photo fromSender:(NSString *)sender onDate:(NSDa
301301
- (void)didSendVideoConverPhoto:(UIImage *)videoConverPhoto videoPath:(NSString *)videoPath fromSender:(NSString *)sender onDate:(NSDate *)date {
302302
XHMessage *videoMessage = [[XHMessage alloc] initWithVideoConverPhoto:videoConverPhoto videoPath:videoPath videoUrl:nil sender:sender timestamp:date];
303303
videoMessage.avatar = [UIImage imageNamed:@"avatar"];
304-
videoMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
304+
videoMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
305305
[self addMessage:videoMessage];
306306
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeVideo];
307307
}
@@ -317,7 +317,7 @@ - (void)didSendVideoConverPhoto:(UIImage *)videoConverPhoto videoPath:(NSString
317317
- (void)didSendVoice:(NSString *)voicePath voiceDuration:(NSString*)voiceDuration fromSender:(NSString *)sender onDate:(NSDate *)date {
318318
XHMessage *voiceMessage = [[XHMessage alloc] initWithVoicePath:voicePath voiceUrl:nil voiceDuration:voiceDuration sender:sender timestamp:date];
319319
voiceMessage.avatar = [UIImage imageNamed:@"avatar"];
320-
voiceMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
320+
voiceMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
321321
[self addMessage:voiceMessage];
322322
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeVoice];
323323
}
@@ -333,7 +333,7 @@ - (void)didSendEmotion:(NSString *)emotionPath fromSender:(NSString *)sender onD
333333
if (emotionPath) {
334334
XHMessage *emotionMessage = [[XHMessage alloc] initWithEmotionPath:emotionPath sender:sender timestamp:date];
335335
emotionMessage.avatar = [UIImage imageNamed:@"avatar"];
336-
emotionMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
336+
emotionMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
337337
[self addMessage:emotionMessage];
338338
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeEmotion];
339339

@@ -348,7 +348,7 @@ - (void)didSendEmotion:(NSString *)emotionPath fromSender:(NSString *)sender onD
348348
- (void)didSendGeoLocationsPhoto:(UIImage *)geoLocationsPhoto geolocations:(NSString *)geolocations location:(CLLocation *)location fromSender:(NSString *)sender onDate:(NSDate *)date {
349349
XHMessage *geoLocationsMessage = [[XHMessage alloc] initWithLocalPositionPhoto:geoLocationsPhoto geolocations:geolocations location:location sender:sender timestamp:date];
350350
geoLocationsMessage.avatar = [UIImage imageNamed:@"avatar"];
351-
geoLocationsMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
351+
geoLocationsMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
352352
[self addMessage:geoLocationsMessage];
353353
[self finishSendMessageWithBubbleMessageType:XHBubbleMessageMediaTypeLocalPosition];
354354
}

Example/MessageDisplayKitWeChatExample/MessageDisplayKitWeChatExample/Controllers/XHDemoWeChatMessageTableViewController/XHCustomCellDemoMessageTableViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ @implementation XHCustomCellDemoMessageTableViewController
1313
- (XHMessage *)getTextMessageWithBubbleMessageType:(XHBubbleMessageType)bubbleMessageType {
1414
XHMessage *textMessage = [[XHMessage alloc] initWithText:@"Call Me 15915895880.这是华捷微信,为什么模仿这个页面效果呢?希望微信团队能看到我们在努力,请微信团队给个机会,让我好好的努力靠近大神,希望自己也能发亮,好像有点过分的希望了,如果大家喜欢这个开源库,请大家帮帮忙支持这个开源库吧!我是Jack,叫华仔也行,曾宪华就是我啦!" sender:@"华仔" timestamp:[NSDate distantPast]];
1515
textMessage.avatar = [UIImage imageNamed:@"avatar"];
16-
textMessage.avatarUrl = @"http://www.pailixiu.com/jack/meIcon@2x.png";
16+
textMessage.avatarUrl = @"http://childapp.pailixiu.com/jack/meIcon@2x.png";
1717
textMessage.bubbleMessageType = bubbleMessageType;
1818

1919
return textMessage;

0 commit comments

Comments
 (0)