Skip to content

Commit

Permalink
Access level for main class set to public
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSmet committed Aug 31, 2018
1 parent bc35d9d commit a7c3231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NumbersScrollAnimatedView/NumberScrollAnimatedView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import UIKit

class NumberScrollAnimatedView: UIView {
public class NumberScrollAnimatedView: UIView {
/// Displayable value, numeric symbols will display with scroll animation
public var text: String = ""

Expand Down Expand Up @@ -80,7 +80,7 @@ class NumberScrollAnimatedView: UIView {
commonInit()
}

required init?(coder aDecoder: NSCoder) {
required public init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
commonInit()
}
Expand Down

0 comments on commit a7c3231

Please sign in to comment.