Hi, i have some problem after upgrading Xcode from 13 to 14
this my code. In attachment is print screen of fault. Thanks for help.
private lazy var boradManger: BLTNItemManager = {
let item = BLTNPageItem(title: "Notification")
item.image = UIImage(named: "info")
item.image = resizeImage(image: item.image!, targetSize: CGSize(width: 200 , height: 200))
item.actionButtonTitle = "Continue".localizable()
item.alternativeButtonTitle = "Later".localizable()
item.descriptionText = notifikace
item.actionHandler = { _ in
self.dismiss(animated: true, completion: nil)
}
item.alternativeHandler = { _ in
self.dismiss(animated: true, completion: nil)
}
return BLTNItemManager(rootItem: item)
}()