redribben

volumeView

Mar 2nd, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (void)viewDidLoad {
  2.     [super viewDidLoad];
  3.     [self setUpVolumeView];
  4. }
  5.  
  6. - (void) setUpVolumeView {
  7.     // Volume control
  8.     NSLog(@"This is the width of viewVolume: %f", self.viewVolume.bounds.size.width);
  9.     MPVolumeView *volumeView = [[MPVolumeView alloc] initWithFrame:self.viewVolume.bounds];
  10.     [self.viewVolume addSubview:volumeView];
  11.     [volumeView sizeToFit];
  12. }
  13.  
  14. - (void) viewDidLayoutSubviews {
  15.     //    [self setUpVolumeView];
  16.     NSLog(@"This is the width of viewVolume: %f", self.viewVolume.bounds.size.width);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment