CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

PictureInPicture 0.3.0

PictureInPicture 0.3.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Oct 2017
SwiftSwift Version 4.0
SPMSupports SPM

Maintained by Koji Murata.



  • By
  • Koji Murata





ScreenShot

Usage

Configure

If you want to change from default value.

let shadowConfig = PictureInPicture.ShadowConfig(color: .black, offset: .zero, radius: 10, opacity: 1)
PictureInPicture.configure(movable: true,
                           scale: 0.3,
                           margin: 10,
                           defaultEdge: .left,
                           shadowConfig: shadowConfig)

Default Config

PictureInPicture.configure(movable: true,
                           scale: 0.2,
                           margin: 8,
                           defaultEdge: .right,
                           shadowConfig: .default)

Default Shadow Config

ShadowConfig(color: .black, offset: .zero, radius: 5, opacity: 0.5)

Main Functions

PictureInPicture.shared.present(with: viewController) // Present
PictureInPicture.shared.dismiss()                     // Dismiss
PictureInPicture.shared.makeSmaller()                 // Make Smaller
PictureInPicture.shared.makeLarger()                  // Make Larger
PictureInPicture.shared.presentedViewController       // Get presented ViewController

Notifications

  • PictureInPictureMadeSmaller
  • PictureInPictureMadeLarger
  • PictureInPictureDidBeginMakingSmaller
  • PictureInPictureDidBeginMakingLarger
  • PictureInPictureMoved
    • PictureInPictureOldCornerUserInfoKey # PictureInPicture.Corner
    • PictureInPictureNewCornerUserInfoKey # PictureInPicture.Corner
  • PictureInPictureDismissed

Other Constants

  • UIWindowLevelPictureInPicture

Author

Koji Murata, [email protected]

License

PictureInPicture is available under the MIT license. See the LICENSE file for more info.