I integrated using Pod, but couldn't able to access LoadingShimmer class due to default internal access of class.
I made public access to that class by putting public keyword.
public class LoadingShimmer: NSObject {
public static let shared = LoadingShimmer()
public class func startCovering(_ view: UIView?) {
shared.coverSubviews(view)
}
public class func stopCovering(_ view: UIView?) {
shared.removeSubviews(view)
}
}
I integrated using Pod, but couldn't able to access
LoadingShimmer
class due to defaultinternal
access of class.I made public access to that class by putting
public
keyword.Would you please do the same changes in repo.
Thanks.