0

在 iOS 的 Objective-C 中,如何在类视图控制器中有一个 Slider 来改变 AppDelage 中播放的歌曲的音量?这是我在 .h AppDelegate 中的代码

#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>

@interface JARAppDelegate : UIResponder <UIApplicationDelegate>
{
    AVAudioPlayer *musicPlayer;
}

@property (strong, nonatomic) UIWindow *window;

- (void)playMusic;
- (void)setVolume:(float)vol;

@end

在 .m 中:

- (void)playMusic
{

    NSString *musicPath = [[NSBundle mainBundle] pathForResource:@"The History of the World" ofType:@"mp3"];
    NSURL *musicURL =  [[NSURL alloc] initFileURLWithPath:musicPath];

    musicPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:musicURL error:nil];
    [musicPlayer setNumberOfLoops:-1];   // Negative number means loop forever
    [musicPlayer setVolume:1.0];

    [musicPlayer prepareToPlay];
    [musicPlayer play];
    NSLog(@"play");
}

- (void)setVolume:(float)vol
{
    [musicPlayer setVolume:vol];
}

当我调用“didFinishLaunchingWithOptions”时, [self playMusic]; 这可以工作并播放我想要全音量的歌曲!然后在另一个名为 SettingsViewControler 的类中:.h

#import <UIKit/UIKit.h>
#import "JARAppDelegate.h"

@interface JARSettingsViewController : UIViewController
{

}

@property (strong, nonatomic) IBOutlet UISlider *volumeSliderOutlet;

- (IBAction)volumeSliderActoin:(id)sender;

@end

他们:

- (IBAction)volumeSliderActoin:(id)sender
{
     NSLog(@"Volume Changed");
     [JARAppDelegate setVolume:sender];
}

每次上下移动滑块时都会记录 Volume Changed,因此它应该向 setVolume 发送一个介于 0.0 和 1.0 之间的值。但我收到一条错误消息,提示“选择器'setVolume:'没有已知的类方法:'

4

1 回答 1

1

这是因为您在调用时尝试调用方法:

[JARAppDelegate setVolume:sender];

但这不存在。您已经创建了一个实例方法。

尝试为 AVAudioPlayer 创建一个单例,然后您可以执行以下操作:

[[AVAudioPlayer sharedInstance] setVolume:vol];
于 2012-08-14T23:30:41.030 回答