Merge branch 'master' into feature/logging_api
This commit is contained in:
commit
9fa4b7c058
|
|
@ -5,6 +5,10 @@
|
|||
- **Add**: `LoggingPresenter`to present list of logs with ability of sharing it
|
||||
- **Add**: `TILogger` wrapper object to log events.
|
||||
|
||||
### 1.27.1
|
||||
|
||||
- **Fix**: Weak target reference in `RefreshControl`
|
||||
|
||||
### 1.27.0
|
||||
|
||||
- **Add**: Tag like filter collection view
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
import UIKit
|
||||
|
||||
open class RefreshControl: UIRefreshControl {
|
||||
|
||||
private var action: Selector?
|
||||
private var target: NSObjectProtocol?
|
||||
|
||||
private weak var target: NSObjectProtocol?
|
||||
|
||||
// Handle .valueChanged event of refresh control
|
||||
public override func addTarget(_ target: Any?, action: Selector, for controlEvents: UIControl.Event) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue