1

I want to set alarm like default CLOCK application. I tried with EKAlarm but it only works like Local Notification.

My target is too wake up a person if he sleeps. Can we achieve this in iOS?

D4ttatraya
  • 3,344
  • 1
  • 28
  • 50
nirav
  • 573
  • 5
  • 20
  • Check it: https://stackoverflow.com/questions/40337064/generate-local-notification-for-every-28-days-ios-10-objective-c/40337274#40337274 – Jamshed Alam May 26 '17 at 07:24

1 Answers1

4

You can't set alarm like default clock application. All you can do is use LocalNotification and add sound to it (30 seconds max). And sound won't play if the phone in silent mode.

BadCodeDeveloper
  • 455
  • 5
  • 24