27 lines
619 B
Swift
27 lines
619 B
Swift
//
|
|
// AlarmActivationViewController.swift
|
|
// ProjectClock
|
|
//
|
|
// Created by Hykilpikonna on 1/17/21.
|
|
//
|
|
|
|
import UIKit
|
|
import AVFoundation
|
|
|
|
class AlarmActivationViewController: UIViewController
|
|
{
|
|
var timer: Timer?
|
|
|
|
override func viewDidLoad()
|
|
{
|
|
super.viewDidLoad()
|
|
timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(AlarmActivationViewController.playSound), userInfo: nil, repeats: true)
|
|
}
|
|
|
|
@objc func playSound()
|
|
{
|
|
AudioServicesPlayAlertSound(SystemSoundID(1005))
|
|
AudioServicesPlayAlertSound(kSystemSoundID_Vibrate)
|
|
}
|
|
}
|