File tree 8 files changed +12
-154
lines changed
8 files changed +12
-154
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 2.0.1] ( https://github.com/sinarionn/ReusableView/releases/tag/2.0.0 )
6
+
7
+ Project fixed for Carthage support.
8
+
9
+
5
10
## [ 2.0.0] ( https://github.com/sinarionn/ReusableView/releases/tag/2.0.0 )
6
11
7
12
Naming changes.
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >2.0.0 </string >
18
+ <string >2.0.1 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 1
1
2
2
Pod ::Spec . new do |s |
3
3
s . name = "ReusableView"
4
- s . version = "2.0.0 "
4
+ s . version = "2.0.1 "
5
5
s . summary = "Reusable and NonReusable viewModel containers"
6
6
7
7
s . homepage = "https://github.com/sinarionn/ReusableView"
Original file line number Diff line number Diff line change 770
770
GCC_C_LANGUAGE_STANDARD = gnu99;
771
771
INFOPLIST_FILE = Plists/ReusableView.plist;
772
772
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
773
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
774
773
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
775
774
MTL_ENABLE_DEBUG_INFO = YES;
776
775
PRODUCT_BUNDLE_IDENTIFIER = sinarionn.ReusableView;
777
776
PRODUCT_NAME = "$(TARGET_NAME)";
778
- SDKROOT = iphoneos;
779
777
SKIP_INSTALL = YES;
780
778
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
781
779
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
794
792
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
795
793
CODE_SIGN_IDENTITY = "";
796
794
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
797
- COPY_PHASE_STRIP = NO;
798
795
DEFINES_MODULE = YES;
799
796
DEVELOPMENT_TEAM = "";
800
797
DYLIB_COMPATIBILITY_VERSION = 1;
803
800
GCC_C_LANGUAGE_STANDARD = gnu99;
804
801
INFOPLIST_FILE = Plists/ReusableView.plist;
805
802
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
806
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
807
803
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
808
804
MTL_ENABLE_DEBUG_INFO = NO;
809
805
PRODUCT_BUNDLE_IDENTIFIER = sinarionn.ReusableView;
810
806
PRODUCT_NAME = "$(TARGET_NAME)";
811
- SDKROOT = iphoneos;
812
807
SKIP_INSTALL = YES;
813
808
SWIFT_VERSION = 4.0;
814
809
VERSION_INFO_PREFIX = "";
Original file line number Diff line number Diff line change 26
26
buildConfiguration = " Debug"
27
27
selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
28
28
selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
29
- language = " "
30
- shouldUseLaunchSchemeArgsEnv = " YES"
31
- codeCoverageEnabled = " YES" >
29
+ codeCoverageEnabled = " YES"
30
+ shouldUseLaunchSchemeArgsEnv = " YES" >
32
31
<Testables >
33
32
<TestableReference
34
33
skipped = " NO" >
57
56
buildConfiguration = " Debug"
58
57
selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
59
58
selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
60
- language = " "
61
59
launchStyle = " 0"
62
60
useCustomWorkingDirectory = " NO"
63
61
ignoresPersistentStateOnLaunch = " NO"
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ public extension ViewModelHolderType {
45
45
import UIKit
46
46
extension ViewModelHolderType where Self: UIViewController {
47
47
public func prepareForUsage( ) {
48
- loadViewIfNeeded ( )
48
+ if #available( iOS 9 . 0 , * ) {
49
+ loadViewIfNeeded ( )
50
+ }
49
51
view. layoutIfNeeded ( )
50
52
}
51
53
}
You can’t perform that action at this time.
0 commit comments