iOS Question Local Notification Scheduling

mauro vicamini

Active Member
Licensed User
Longtime User
Hi everyone,
I've two questions:
1) If I schedule a local notification at 07:00AM and I turn on the phone at 08:00AM it will start at 08:00AM or it will be never start?
2) if i schedule a notification to be notified every hour with:
B4X:
Dim no As NativeObject = YourLocalNotification
no.SetField("repeatInterval", 16) '16 - daily, 32 - every hour, 64 - every minute
how can I delete the schedule?

Thanks
 

JanPRO

Well-Known Member
Licensed User
Longtime User
1)Just test it ;) But I think it will be never start
2)
B4X:
Dim NaObj As NativeObject = App
NaObj.RunMethodWithBlocks("cancelLocalNotification:",Array(Notification))
 
Upvote 0
Top