Skip to content

Commit

Permalink
Made classes public
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Lomov authored and Sergey Lomov committed Apr 23, 2017
1 parent eba233d commit 5eda556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SSPPullToRefresh/SSPActivityIndicatorView.swift
Expand Up @@ -9,7 +9,7 @@
import Foundation
import UIKit

class SSPActivityIndicatorView:UIView {
public class SSPActivityIndicatorView:UIView {
func reset() {}
func stopAnimating() {}
func startAnimating() {}
Expand Down
6 changes: 3 additions & 3 deletions SSPPullToRefresh/SSPPullToRefreshView.swift
Expand Up @@ -8,13 +8,13 @@

import UIKit

protocol SSPPullToRefreshDelegate {
public protocol SSPPullToRefreshDelegate {
func preparationDidFinish(refreshView:SSPPullToRefreshView)
func compressingDidFinish(refreshView:SSPPullToRefreshView)
// func pullReleaseDidFinish(refreshView:SSPPullToRefreshView)
func pullReleaseDidFinish(refreshView:SSPPullToRefreshView)
}

class SSPPullToRefreshView : UIView {
public class SSPPullToRefreshView : UIView {
var delegate:SSPPullToRefreshDelegate?

func setPullProgress(progress:CGFloat) {}
Expand Down

0 comments on commit 5eda556

Please sign in to comment.