Skip to content

Commit

Permalink
Make layer speed activity and default activity classes open
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Lomov authored and Sergey Lomov committed Apr 24, 2017
1 parent 4dbbcf4 commit 13cb08b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions SSPPullToRefresh/SSPDefaultActivityView.swift
Expand Up @@ -8,17 +8,17 @@

import UIKit

class SSPDefaultActivityView: SSPLayerSpeedActivityView {
open class SSPDefaultActivityView: SSPLayerSpeedActivityView {

var activity:UIActivityIndicatorView!

override init(frame: CGRect) {
public override init(frame: CGRect) {
super.init(frame: frame)
addDefaultActivity()

}

required init?(coder aDecoder: NSCoder) {
public required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
addDefaultActivity()
}
Expand Down
2 changes: 1 addition & 1 deletion SSPPullToRefresh/SSPLayerSpeedActivityView.swift
Expand Up @@ -8,7 +8,7 @@

import UIKit

class SSPLayerSpeedActivityView: SSPActivityIndicatorView {
open class SSPLayerSpeedActivityView: SSPActivityIndicatorView {

// Should be setted in subclass at animation adding
internal var animationAddingTime:CFTimeInterval?
Expand Down

0 comments on commit 13cb08b

Please sign in to comment.