How can I implement a mini player in Apple Music in my application?

Apple introduced a new interface in Apple Music on iOS 8.4.

When the soundtrack starts to play, the mini-player appears just above the tab bar, and you can turn it on in full screen mode, I drag it or click on it.

I assume this is using the UIViewController API. Where can I start with my own implementation?

How can I implement something like this?

+5
source share
1 answer

Oddly enough, I came across a framework that implemented this this week. Give LNPopupController the look. It implements the behavior you are looking for (shows the minibar, then click or drag to present the view controller). If this doesn't quite fit your needs, perhaps this can at least provide a starting point for implementing your own thing.

+11
source

All Articles