-
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.
- Loading branch information
1 parent
df76875
commit e4aa2cf
Showing
10 changed files
with
71 additions
and
103 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// swift-tools-version:5.3 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "UIViewController-DisplayChild", | ||
platforms: [ | ||
.iOS(.v12) | ||
], | ||
products: [ | ||
.library( | ||
name: "UIViewController-DisplayChild", | ||
targets: ["UIViewController-DisplayChild"]), | ||
], | ||
targets: [ | ||
.target( | ||
name: "UIViewController-DisplayChild", | ||
dependencies: [], | ||
path: "Sources" | ||
), | ||
] | ||
) |
File renamed without changes.
File renamed without changes.
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.2.0' | ||
s.version = '2.2.1' | ||
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. | ||
|
@@ -12,8 +12,8 @@ The solution: transition to type, instead of an instance. If the instance does n | |
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
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.ios.deployment_target = '12.0' | ||
s.swift_version = '5' | ||
s.source_files = 'UIViewController-DisplayChild/**/*' | ||
s.source_files = 'Sources/**/*' | ||
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
80 changes: 0 additions & 80 deletions
80
UIViewController-DisplayChild.xcodeproj/xcshareddata/xcschemes/Vito.xcscheme
This file was deleted.
Oops, something went wrong.