For example:
Code: Select all
VLCMedia *media = [[VLCMedia alloc] initWithURL:url];
VLCMediaPlayer *player = [[VLCMediaPlayer alloc] init];
[player setMedia:media];
[player setDrawable:pipView];
[player play];
// is this possible ?
[player setDrawable:fullscreenView];
After a quick try, it's not working at all. Why ?