EILPoint triggers popup with text - help needed

Hello community,

I am just in the middle of getting my head around the indoor SDK. The app I am developing is quite basic and I want to have the following basic function.

When I am near a particular object, a pop-up window should appear on my display and print the statement in quotation mark.

let fridgePosition = EILPoint(x: 1.0, y: 1.5)
if position.distanceToPoint(fridgePosition) < 1 {
    print("You are in front of the fridge")
}

Is there a quick way to implement that feature into the app?

Thank you for any help/
~ Alex

I’d say, use the example as the baseline:

As for how to show a popup on iOS, probably the easiest is to use the built-in UIAlertController for that: