Update Riot/Modules/Room/Views/InputToolbar/RoomActionItem.swift

Co-authored-by: ismailgulek <ismailgulek@users.noreply.github.com>
This commit is contained in:
Gil Eluard
2021-04-08 10:47:28 +02:00
committed by GitHub
parent 241a0cc076
commit f06307a0d0

View File

@@ -18,13 +18,13 @@ import UIKit
@objcMembers
@objc class RoomActionItem: NSObject {
var image: UIImage!
var action: (() -> Void)!
let image: UIImage
let action: (() -> Void)
init(image: UIImage, andAction action: @escaping () -> Void) {
super.init()
self.image = image
self.action = action
super.init()
}
}