Compare commits
19 Commits
master
...
fix/merge_
| Author | SHA1 | Date |
|---|---|---|
|
|
5e4c51c2f9 | |
|
|
0d8e80deab | |
|
|
fd1c2cc56b | |
|
|
6e8eda4c42 | |
|
|
198eaecf96 | |
|
|
131ed5b493 | |
|
|
1e7e840e23 | |
|
|
1091d27034 | |
|
|
292d5ce16c | |
|
|
2bd38efab0 | |
|
|
5297be522f | |
|
|
0d51ccb908 | |
|
|
ce26a914a0 | |
|
|
6fca1936df | |
|
|
28c51ae7f6 | |
|
|
dfeb41b919 | |
|
|
ccc085df3c | |
|
|
0bc80d98b8 | |
|
|
f62ad5be5f |
|
|
@ -102,6 +102,12 @@
|
|||
### 0.9.31
|
||||
- **Add**: `@discardableResult` to function - `replace(with:at:with:manualBeginEndUpdates)` in `TableDirector`.
|
||||
|
||||
### 0.9.30.2
|
||||
- **Fix**: version for Soglasie. open protection level
|
||||
|
||||
### 0.9.30.1
|
||||
- **Fix**: version for Soglasie
|
||||
|
||||
### 0.9.30
|
||||
- **Add**: character `*` into a valid set of characters in the extension `telpromptURL` of String.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = "LeadKit"
|
||||
s.version = "0.10.9"
|
||||
s.version = "0.9.45"
|
||||
s.summary = "iOS framework with a bunch of tools for rapid development"
|
||||
s.homepage = "https://github.com/TouchInstinct/LeadKit"
|
||||
s.license = "Apache License, Version 2.0"
|
||||
|
|
@ -42,6 +42,7 @@ Pod::Spec.new do |s|
|
|||
"Sources/Classes/Search/*",
|
||||
"Sources/Enums/Search/*",
|
||||
"Sources/Extensions/CABasicAnimation/*",
|
||||
"Sources/Extensions/UIInterfaceOrientation/UIInterfaceOrientation+ VideoOrientation.swift",
|
||||
"Sources/Extensions/CGFloat/CGFloat+Pixels.swift",
|
||||
"Sources/Extensions/NetworkService/NetworkService+RxLoadImage.swift",
|
||||
"Sources/Extensions/DataLoading/GeneralDataLoading/GeneralDataLoadingController+DefaultImplementation.swift",
|
||||
|
|
@ -82,6 +83,16 @@ Pod::Spec.new do |s|
|
|||
"Sources/Classes/Controllers/BaseTableContentController.swift",
|
||||
"Sources/Classes/Views/BaseRxTableViewCell/*",
|
||||
"Sources/Classes/Views/ContainerTableCell/*",
|
||||
"Sources/Classes/Views/TableViewWrapperView/TableViewWrapperView.swift",
|
||||
"Sources/Classes/Controllers/BaseCollectionContentController.swift",
|
||||
"Sources/Classes/Views/CollectionViewWrapperView/CollectionViewWrapperView.swift",
|
||||
"Sources/Classes/Controllers/BaseCustomViewController.swift",
|
||||
"Sources/Classes/Controllers/BaseConfigurableController.swift",
|
||||
"Sources/Classes/Controllers/BaseScrollContentController.swift",
|
||||
"Sources/Classes/Controllers/BaseOrientationController.swift",
|
||||
"Sources/Classes/Controllers/BaseOrientationNavigationController.swift",
|
||||
"Sources/Extensions/UIKit/UIDevice/UIDevice+ScreenOrientation.swift",
|
||||
"Sources/Extensions/UIInterfaceOrientation/UIInterfaceOrientation+ VideoOrientation.swift",
|
||||
"Sources/Classes/Views/SeparatorRowBox/*",
|
||||
"Sources/Classes/Views/SeparatorCell/*",
|
||||
"Sources/Classes/Views/EmptyCell/*",
|
||||
|
|
|
|||
|
|
@ -6,8 +6,9 @@ public extension UIDevice {
|
|||
///
|
||||
/// - Parameters:
|
||||
/// - orientation: ориентация в терминах ScreenOrientation
|
||||
func rotateManually(to orientation: UIInterfaceOrientation) {
|
||||
UIDevice.current.setValue(orientation, forKey: "orientation")
|
||||
func rotateOrientationManually(to orientation: UIInterfaceOrientation) {
|
||||
let orientationValue = Int(orientation.rawValue)
|
||||
UIDevice.current.setValue(orientationValue, forKey: "orientation")
|
||||
UIViewController.attemptRotationToDeviceOrientation()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue