AVIMMessageOption *option = [[AVIMMessageOption alloc] init];
option.pushData = @{@"alert" : content, @"sound" : @"default", @"badge" : @1, @"custom-key" : @"由用户添加的自定义属性,custom-key 仅是举例,可随意替换",@"prod":@"dev"};
AVIMTextMessage * textmessage = [AVIMTextMessage messageWithText:content attributes:attributes];
[conversation sendMessage:textmessage option:option callback:^(BOOL succeeded, NSError * _Nullable error) 这样配置怎么没有推送啊,随着发消息一起发出去

这个原来要设置一个默认值,设置就有了,谢谢。