eggswift / pull-to-refresh

#Busy Re-Building....# An easy way to use pull to refresh and infinite scrolling in Swift. Pod 'ESPullToRefresh'
MIT License
1.83k stars 251 forks source link

error occur when archive #112

Open foolbear opened 6 years ago

foolbear commented 6 years ago
/Utilities/ESPullToRefresh/ES.swift:38:1: Type 'UIScrollView' does not conform to protocol 'ESExtensionsProvider'

/Utilities/ESPullToRefresh/ES.swift:19:16: Candidate has non-matching type 'ES<Self>' [with CompatibleType = UIScrollView.CompatibleType]
foolbear commented 6 years ago

building is ok.

installed by manually, ios11, xcode 901

olivinesguerra commented 5 years ago

still any luck?

fukemy commented 3 years ago

same problem here

fukemy commented 3 years ago

did anyone solved this?

fukemy commented 3 years ago

Solved. Other lib has decraled CompatibleType, jisst change it's name

eddiegroves commented 3 years ago

Example

// ES.Swift
public protocol ESExtensionsProvider: class {
    associatedtype SomethingElseCompatibleType
    var es: SomethingElseCompatibleType { get }
}