Skip to content

Commit

Permalink
Correct access level of class convenience functions [swift]
Browse files Browse the repository at this point in the history
  • Loading branch information
cbpowell committed Aug 8, 2017
1 parent 10275fb commit 3f22ffa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Sources/Swift/MarqueeLabel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
- SeeAlso: controllerViewDidAppear:
- SeeAlso: controllerViewWillAppear:
*/
class func restartLabelsOfController(_ controller: UIViewController) {
open class func restartLabelsOfController(_ controller: UIViewController) {
MarqueeLabel.notifyController(controller, message: .Restart)
}

Expand All @@ -376,7 +376,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
- SeeAlso: restartLabel
- SeeAlso: controllerViewDidAppear
*/
class func controllerViewWillAppear(_ controller: UIViewController) {
open class func controllerViewWillAppear(_ controller: UIViewController) {
MarqueeLabel.restartLabelsOfController(controller)
}

Expand All @@ -389,7 +389,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
- SeeAlso: restartLabel
- SeeAlso: controllerViewWillAppear
*/
class func controllerViewDidAppear(_ controller: UIViewController) {
open class func controllerViewDidAppear(_ controller: UIViewController) {
MarqueeLabel.restartLabelsOfController(controller)
}

Expand All @@ -401,7 +401,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
- Parameter controller: The view controller for which all `MarqueeLabel` instances should be labelized.
- SeeAlso: labelize
*/
class func controllerLabelsLabelize(_ controller: UIViewController) {
open class func controllerLabelsLabelize(_ controller: UIViewController) {
MarqueeLabel.notifyController(controller, message: .Labelize)
}

Expand All @@ -413,7 +413,7 @@ open class MarqueeLabel: UILabel, CAAnimationDelegate {
- Parameter controller: The view controller for which all `MarqueeLabel` instances should be de-labelized.
- SeeAlso: labelize
*/
class func controllerLabelsAnimate(_ controller: UIViewController) {
open class func controllerLabelsAnimate(_ controller: UIViewController) {
MarqueeLabel.notifyController(controller, message: .Animate)
}

Expand Down

0 comments on commit 3f22ffa

Please sign in to comment.