LucasBlackP / iOSfromScratch

This is project for demo and study swift language
MIT License
0 stars 1 forks source link

Note for NotificationCenter #43

Open LucasBlackP opened 6 years ago

LucasBlackP commented 6 years ago

https://learnappmaking.com/notification-center-how-to-swift/

https://medium.com/@dmytro.anokhin/notification-in-swift-d47f641282fa

LucasBlackP commented 6 years ago

note pattern for write Notification Center:

extension Notification.Name { static var playbackStarted: Notification.Name { return .init(rawValue: "AudioPlayer.playbackStarted") } static var playbackPaused: Notification.Name { return .init(rawValue: "AudioPlayer.playbackPaused") } static var playbackStopped: Notification.Name { return .init(rawValue: "AudioPlayer.playbackStopped") } }