mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
22 lines
464 B
Swift
22 lines
464 B
Swift
import UIKit
|
|
|
|
class SPTPageViewController: UIViewController {
|
|
|
|
override func conforms(to aProtocol: Protocol) -> Bool {
|
|
|
|
if NSStringFromProtocol(aProtocol) ~= "SPTPageController" {
|
|
return true
|
|
}
|
|
|
|
return super.conforms(to: aProtocol)
|
|
}
|
|
|
|
@objc func spt_pageIdentifier() -> String? {
|
|
return "EeveeSpotify"
|
|
}
|
|
|
|
@objc func spt_pageURI() -> NSURL? {
|
|
return NSURL(string: "")
|
|
}
|
|
}
|