Регулятор громкости в iPhone OS от другого контроллера представления? - PullRequest
1 голос
/ 25 января 2010

Если я играю звук в одном виде, кто-нибудь знает, можно ли управлять громкостью из другого, если это так, может кто-нибудь объяснить, как? Я не могу понять, у меня нет кода, чтобы показать для тома.

Звук вызывается из одного вида, а ползунок громкости - из другого. Я закодировал оба.

Код для звука

 #import `<AVFoundation/AVAudioPlayer.h`>  
 #import "LeftViewController.h"


@implementation LeftViewController




- (IBAction)buttonrm:(id)sender
{
 [self dismissModalViewControllerAnimated:YES];
}

- (IBAction)playl {

 [theAudio play];



}

- (IBAction)pausel {

 [theAudio pause];

}

/*
 // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
        // Custom initialization
    }
    return self;
}
*/

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {

 NSString *path =[[NSBundle mainBundle] pathForResource:@"The Noisettes - Never Forget You" ofType:@"mp3"];
 theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
 theAudio.delegate = self;
 //[theAudio play];




    [super viewDidLoad];
}



// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
 return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}



- (void)didReceiveMemoryWarning {
 // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

 // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
 // Release any retained subviews of the main view.
 // e.g. self.myOutlet = nil;
}


- (void)dealloc {
    [super dealloc];
}


@end

код для слайдера

 - (void)viewDidLoad {
    [super viewDidLoad];

 CGRect sliderRect = CGRectMake(46,124,169,0);
 UISlider *VolumeL = [[UISlider alloc] initWithFrame:sliderRect];
 VolumeL.minimumValue = 0;
 VolumeL.maximumValue = 100;
 VolumeL.continuous = YES;


 UIImage *sliderctrl = [UIImage imageNamed:@"VolumeL.png"];
 //UIImage *stetchLeftTrack = [[UIImage imageNamed:@"volumel12.png"]
 //stretchableImageWithLeftCapWidth:5.0 topCapHeight:0.0];


 [VolumeL setThumbImage:sliderctrl forState:UIControlStateNormal];
 //[VolumeL setMinimumTrackImage:stetchLeftTrack forState:UIControlStateNormal];

 [VolumeL addTarget:self action:@selector(sliderAction:) forControlEvents:UIControlEventValueChanged];

 VolumeL.transform = CGAffineTransformRotate(VolumeL.transform, 270.0/180*M_PI);

 [self.view addSubview:VolumeL];

 [VolumeL release];


 }

Ответы [ 2 ]

1 голос
/ 11 марта 2013

Использовать шаблон делегата

Во втором контроллере представления создайте протокол MyProtocol, например, с одним методом:

- (void)didUpdateVolume:(NSUInteger)volume;

Также создайте переменную экземпляра делегата для хранения ссылки на делегат

@property (nonatomic, assign) id<MyProtocol> delegate;

И не забудьте синтезировать его в реализации.

При обновлении значения тома вы отправляете это значение делегату

[self.delegate didUpdateVolume:newValue];

Вернувшись в первый контроллер, примите протокол MyProtocol, внедрите didUpdateVolume и установите значение в вашем плеере.

0 голосов
/ 25 января 2010

Попробуйте использовать Центр уведомлений.

http://blog.grio.com/2009/04/broadcasting-information-how-to-use-the-iphone-notification-center.html

...