I'm working with iBeacons and want to show alert when the user is near the iBeacon. For this I do:
for closest in beacons as! [CLBeacon] {
if closest.major == 4660 && closest.minor == 4648 {
var customIcon:UIImage! = UIImage(named: "location2.png")
var customColor:UIColor! = UIColor(red: 63/255.0, green: 172/255.0, blue: 236/255.0, alpha: 1)
var alert = JSSAlertView().show(
self,
title: "You're near the beacon!",
buttonText: "Dismiss",
color: customColor,
iconImage: customIcon
)
alert.setTextTheme(.Light)
}
}
It works, but a problem is that it shows many times, one by one and user cannot Dismiss this alert. It's because of that my app update the location of ibeacon every second for find new ibeacons.
Can I show this alert just one time?
I do the next:
var flag = 0
if flag == 0 {
var alert = JSSAlertView().show(
self,
title: "You're near the beacon!",
buttonText: "Dismiss",
color: customColor,
iconImage: customIcon
)
alert.setTextTheme(.Light)
}
but it doesn't work, too
This is an edit to @cream-corn's code