Skip to content

Qiscus Chat SDK (core) v1.5.10

Compare
Choose a tag to compare
@ariefnurputranto ariefnurputranto released this 25 Jan 10:10
· 50 commits to master since this release

Changelog :

  • Implement feature update message

For example :

QiscusCore.shared.updateMessage(message: comment, onSuccess: { [weak self] (comment) in
           
        }) { (error) in
           
        }

Implement in delegate :
QiscusCoreDelegate :

func onRoomMessageUpdated(_ room: RoomModel, message: CommentModel){
     //message updated
     //reload your tableView from roomID
}

QiscusCoreRoomDelegate :

func onMessageUpdated(message: CommentModel) {
     //message updated
     //reload your tableView
}

****Note :