ZHChat icon indicating copy to clipboard operation
ZHChat copied to clipboard

Acceso a la imagen de una mensaje Media

Open dfsaetamar opened this issue 6 years ago • 1 comments

Su ayuda.... Deseo actualizar las imágenes de los mensajes media de imagen.

Pero al cambiar en la función configureCell la imagen del mensaje no se realiza en la vista de la configuración de TableView.

//MARK:Configure Cell Data func configureCell(_ cell: ZHCMessagesTableViewCell, atIndexPath indexPath: IndexPath) -> Void { let message: ZHCMessage = self.demoData.messages.object(at: indexPath.row) as! ZHCMessage; if !message.isMediaMessage { if (message.senderId == self.senderId()) { cell.textView?.textColor = UIColor.black; }else{ cell.textView?.textColor = UIColor.white; } }else{ cell.messageBubbleImageView?.image = "NuevaImagenParaElMensaje" } }

dfsaetamar avatar Apr 26 '18 15:04 dfsaetamar

If you want to customize the video display picture, you can refer to the ZHCVideoMediaItem class, it is best to inherit ZHCMediaItem rewrite Method -(UIView *) mediaView, where you can write any view you need to show. The core is the protocol ZHCMessageMediaData you can get to know.

zhuozhuo avatar May 09 '18 10:05 zhuozhuo