Hacker News new | ask | show | jobs
by throwaway64 4960 days ago
My personal favourite comes from apple

    AVPlayer *player = <#A configured AVPlayer object#>;
    
    CALayer *superlayer = <#Get a CALayer#>;

    AVPlayerLayer *playerLayer = [AVPlayerLayer playerLayerWithPlayer:player];
    
    [superlayer addSublayer:playerLayer];

https://developer.apple.com/library/ios/#documentation/AVFou...