Merge branch 'master' into feature/logging_api

This commit is contained in:
Nikita Semenov 2022-11-08 18:15:19 +03:00 committed by GitHub
commit 9fa4b7c058
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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) {