Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - (void)viewDidLoad {
- [super viewDidLoad];
- [self setUpVolumeView];
- }
- - (void) setUpVolumeView {
- // Volume control
- NSLog(@"This is the width of viewVolume: %f", self.viewVolume.bounds.size.width);
- MPVolumeView *volumeView = [[MPVolumeView alloc] initWithFrame:self.viewVolume.bounds];
- [self.viewVolume addSubview:volumeView];
- [volumeView sizeToFit];
- }
- - (void) viewDidLayoutSubviews {
- // [self setUpVolumeView];
- NSLog(@"This is the width of viewVolume: %f", self.viewVolume.bounds.size.width);
- }
Advertisement
Add Comment
Please, Sign In to add comment