-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from inloop/swift5
Swift 5 update
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'UIViewController-DisplayChild' | ||
s.version = '2.1.0' | ||
s.version = '2.2.0' | ||
s.summary = 'UIViewController containment made easy' | ||
s.description = <<-DESC | ||
The problem: sometimes you need to embed a controller, but it might be embedded already. E.g. you have an empty view, and you do refresh only to get empty view again. If you do not check for its existence, you might end up creating a new instance unneccessarily. This can also have bad side effects when there is some heavier work in viewDidLoad for example. | ||
|
@@ -13,7 +13,7 @@ The solution: transition to type, instead of an instance. If the instance does n | |
s.author = { 'INLOOPX' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/inloop/UIViewController-DisplayChild.git', :tag => s.version.to_s } | ||
s.ios.deployment_target = '10.0' | ||
s.swift_version = '4.2' | ||
s.swift_version = '5' | ||
s.source_files = 'UIViewController-DisplayChild/**/*' | ||
s.exclude_files = 'UIViewController-DisplayChild/Info.plist' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters