-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathViewController.h
More file actions
37 lines (27 loc) · 792 Bytes
/
Copy pathViewController.h
File metadata and controls
37 lines (27 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// Created by Jesse Squires
// https://www.jessesquires.com
//
//
// Documentation
// https://jessesquires.github.io/JSQSystemSoundPlayer
//
//
// GitHub
// https://github.com/jessesquires/JSQSystemSoundPlayer
//
//
// License
// Copyright © 2013-present Jesse Squires
// Released under an MIT license: https://opensource.org/licenses/MIT
//
@import UIKit;
@interface ViewController : UIViewController
@property (weak, nonatomic) IBOutlet UISwitch *soundSwitch;
- (IBAction)playSystemSoundPressed:(UIButton *)sender;
- (IBAction)playAlertSoundPressed:(UIButton *)sender;
- (IBAction)playVibratePressed:(UIButton *)sender;
- (IBAction)playLongSoundPressed:(UIButton *)sender;
- (IBAction)stopPressed:(UIButton *)sender;
- (IBAction)toggleSwitch:(UISwitch *)sender;
@end