Skip to content

Commit

Permalink
Storyboard integration fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PierrePerrin committed Apr 17, 2017
1 parent c75796d commit 4632c3a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.1
5 changes: 3 additions & 2 deletions PPLeftMenuNavigation.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PPLeftMenuNavigation'
s.version = '1.0.1'
s.version = '1.0.2'
s.summary = 'Design left menu navigation with a blur animation.'

s.description = <<-DESC
Expand All @@ -14,6 +14,7 @@ s.author = { '<YOUR NAME HERE>' => '<YOUR EMAIL HERE>' }
s.source = { :git => 'https://github.com/PierrePerrin/PPDesignLeftMenuNavigation.git', :tag => s.version.to_s }

s.ios.deployment_target = '8.2'
s.source_files = 'PPLeftMenuNavigation/PPLeftMenuNavigation/*.{swift,jpg,storyboard}'
s.source_files = 'PPLeftMenuNavigation/PPLeftMenuNavigation/*.{swift}'
s.resources = 'PPLeftMenuNavigation/PPLeftMenuNavigation/*.{jpg,storyboard}'

end
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = PP.PPLeftMenuNavigation;
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.PPLeftMenuNavigation;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand All @@ -303,7 +303,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = PP.PPLeftMenuNavigation;
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.PPLeftMenuNavigation;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_VERSION = 3.0;
Expand Down
2 changes: 1 addition & 1 deletion PPLeftMenuNavigation/PPLeftMenuNavigation/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>1.0.3</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion PPLeftMenuNavigation/PPLeftMenuNavigation/PPConstant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
import UIKit


let PPBundle = Bundle(identifier: "PP.PPLeftMenuNavigation")
let PPBundle = Bundle(identifier: "org.cocoapods.PPLeftMenuNavigation")
let PPStr = UIStoryboard(name: "PPMain", bundle: PPBundle)

0 comments on commit 4632c3a

Please sign in to comment.