AirPlay button on custom view

后端 未结 3 993
太阳男子
太阳男子 2020-12-13 16:25

4.3 finally :) I am searching right now how to add air play button to custom view. I have MPMoviePlayer that load movie. I disabled standard controls and added overlay view

3条回答
  •  庸人自扰
    2020-12-13 17:10

    In the Documentation Apple also includes a snippet for that:

    MPVolumeView *volumeView = [ [MPVolumeView alloc] init] ;
    [volumeView setShowsVolumeSlider:NO];
    [volumeView sizeToFit];
    [view addSubview:volumeView];
    

提交回复
热议问题