Error found from this line: self.picture.image = UIImage(named: pictures[closestBeacon.minor.integerValue]!)
How to solve?
Error found from this line: self.picture.image = UIImage(named: pictures[closestBeacon.minor.integerValue]!)
How to solve?
You can prevent the crash by safely unwrapping pictures[closetBeacon.minor.integerValue] with an if let statement.
if let myImage = pictures[closetBeacon.minor.integerValue] {
self.picture.image = UIImage(named: myImage)
}