equal
deleted
inserted
replaced
18 } |
18 } |
19 |
19 |
20 // The AVAudioPlayer that the volume fade will be applied to. |
20 // The AVAudioPlayer that the volume fade will be applied to. |
21 // Retained until the fade is completed. |
21 // Retained until the fade is completed. |
22 // Must be set with init method. |
22 // Must be set with init method. |
23 @property (nonatomic, retain, readonly) AVAudioPlayer *audioPlayer; |
23 @property (nonatomic, strong, readonly) AVAudioPlayer *audioPlayer; |
24 |
24 |
25 // The duration of the volume fade. |
25 // The duration of the volume fade. |
26 // Default value is 1.0 |
26 // Default value is 1.0 |
27 @property (nonatomic, assign) NSTimeInterval fadeDuration; |
27 @property (nonatomic, assign) NSTimeInterval fadeDuration; |
28 |
28 |