1 Commits

Author SHA1 Message Date
Artem Kislitsyn 5e227d71bd minor 2014-10-21 16:13:14 +04:00
204 changed files with 3683 additions and 832 deletions
+21
View File
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'AdaptiveController'
s.version = '0.0.1'
s.summary = 'AdaptiveController is a Progressive Reduction Swift module for adding custom states to Native or Custom UI elements.'
s.license = {"type"=>"MIT"}
s.authors = {"Artem Kislitsyn, Yuri Vasilenko"=>"juri.v@ramotion.com"}
s.homepage = 'https://github.com/Ramotion/adaptive-tab-bar'
s.frameworks = ["UIKit"]
s.requires_arc = true
s.source = {}
s.osx.platform = :osx, ''
s.osx.preserve_paths = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.osx.public_header_files = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework/Versions/A/Headers/*.h'
s.osx.vendored_frameworks = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.ios.platform = :ios, "7.0"
s.ios.preserve_paths = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
s.ios.public_header_files = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework/Versions/A/Headers/*.h'
s.ios.vendored_frameworks = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
end
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'AdaptiveController'
s.version = '0.0.1'
s.summary = 'AdaptiveController is a Progressive Reduction Swift module for adding custom states to Native or Custom UI elements.'
s.license = {"type"=>"MIT"}
s.authors = {"Artem Kislitsyn, Yuri Vasilenko"=>"juri.v@ramotion.com"}
s.homepage = 'https://github.com/Ramotion/adaptive-tab-bar'
s.frameworks = ["UIKit"]
s.requires_arc = true
s.source = {}
s.osx.platform = :osx, ''
s.osx.preserve_paths = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.osx.public_header_files = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework/Versions/A/Headers/*.h'
s.osx.vendored_frameworks = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.ios.platform = :ios, "7.0"
s.ios.preserve_paths = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
s.ios.public_header_files = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework/Versions/A/Headers/*.h'
s.ios.vendored_frameworks = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
end
@@ -0,0 +1 @@
Versions/Current/AdaptiveController
@@ -0,0 +1 @@
Versions/Current/Headers
@@ -0,0 +1 @@
A
@@ -0,0 +1 @@
Versions/Current/AdaptiveController
@@ -0,0 +1 @@
Versions/Current/Headers
@@ -0,0 +1,19 @@
//
// AdaptiveController.h
// AdaptiveController
//
// Created by Arcilite on 24.09.14.
// Copyright (c) 2014 Ramotion. All rights reserved.
//
#import <UIKit/UIKit.h>
//! Project version number for AdaptiveController.
FOUNDATION_EXPORT double AdaptiveControllerVersionNumber;
//! Project version string for AdaptiveController.
FOUNDATION_EXPORT const unsigned char AdaptiveControllerVersionString[];
// In this header, you should import all the public headers of your framework using statements like #import <AdaptiveController/PublicHeader.h>
@@ -0,0 +1 @@
A
+33 -9
View File
@@ -1,12 +1,36 @@
Pod::Spec.new do |s|
s.name = 'AdaptiveController'
s.version = '0.0.1'
s.license = { :type => 'MIT' }
s.name = 'AdaptiveController'
s.version = '0.0.8'
s.summary = 'AdaptiveController is a Progressive Reduction Swift module for adding custom states to Native or Custom UI elements.'
s.license = {"type"=>"MIT"}
s.authors = {"Artem Kislitsyn, Yuri Vasilenko"=>"juri.v@ramotion.com"}
s.homepage = 'https://github.com/Ramotion/adaptive-tab-bar'
s.authors = { 'Artem Kislitsyn, Yuri Vasilenko' => 'yuri.v@ramotion.com' }
s.summary = 'AdaptiveController is a Progressive Reduction Swift module for adding custom states to Native or Custom UI elements.'
s.source = { :git => 'https://github.com/Ramotion/adaptive-tab-bar.git', :tag => "#{s.version}" }
s.source_files = 'AdaptiveController/AdaptiveController/*.{h,swift}'
s.frameworks = 'Swift'
#s.frameworks = ["UIKit"]
s.frameworks = 'Foundation','UIKit'
#,'AdaptiveController'
s.requires_arc = true
end
s.source = { :git => 'https://github.com/Ramotion/adaptive-tab-bar.git', :tag => "#{s.version}" }
#s.source_files = 'AdaptiveController/AdaptiveController/*.{h}'
# Crashes here - Source_file imports MyFramework.h. If I take this out, it passes spec lint validation
s.osx.platform = :osx, ''
s.osx.preserve_paths = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.osx.public_header_files = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework/Versions/A/Headers/*.h'
s.osx.vendored_frameworks = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.ios.platform = :ios, "7.0"
s.ios.preserve_paths = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
s.ios.public_header_files = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework/Versions/A/Headers/*.h','AdaptiveController/AdaptiveController/*.{h,swift}'
s.ios.vendored_frameworks = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
#s.ios.resource = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework/Versions/A/Resources/**/*'
#s.xcconfig = { 'OTHER_LDFLAGS' => '-framework AdaptiveController' }
end
Binary file not shown.
Binary file not shown.
+32
View File
@@ -0,0 +1,32 @@
Pod::Spec.new do |s|
s.name = 'AdaptiveController'
s.version = '0.0.2'
s.summary = 'AdaptiveController is a Progressive Reduction Swift module for adding custom states to Native or Custom UI elements.'
s.license = {"type"=>"MIT"}
s.authors = {"Artem Kislitsyn, Yuri Vasilenko"=>"juri.v@ramotion.com"}
s.homepage = 'https://github.com/Ramotion/adaptive-tab-bar'
s.frameworks = ["UIKit"]
#s.frameworks = 'Foundation', 'AdaptiveController','UIKit'
s.requires_arc = true
s.source = { :git => 'https://github.com/Ramotion/adaptive-tab-bar.git', :tag => "#{s.version}" }
s.source_files = 'AdaptiveController/AdaptiveController/*.{h,swift}'
# Crashes here - Source_file imports MyFramework.h. If I take this out, it passes spec lint validation
s.osx.platform = :osx, ''
#s.osx.preserve_paths = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.osx.public_header_files = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework/Versions/A/Headers/*.h', 'AdaptiveController/AdaptiveController/*.{h,swift}'
#s.osx.vendored_frameworks = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.ios.platform = :ios, "7.0"
#s.ios.preserve_paths = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
s.ios.public_header_files = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework/Versions/A/Headers/*.h', 'AdaptiveController/AdaptiveController/*.{h,swift}'
#s.ios.vendored_frameworks = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
end
@@ -6,7 +6,8 @@ Pod::Spec.new do |s|
s.authors = { 'Artem Kislitsyn, Yuri Vasilenko' => 'yuri.v@ramotion.com' }
s.summary = 'AdaptiveController is a Progressive Reduction Swift module for adding custom states to Native or Custom UI elements.'
s.source = { :git => 'https://github.com/Ramotion/adaptive-tab-bar.git', :tag => "#{s.version}" }
s.ios.platform = :ios, '7.0'
s.source_files = 'AdaptiveController/AdaptiveController/*.{h,swift}'
s.frameworks = 'Swift'
s.frameworks = 'Swift','UIKit'
s.requires_arc = true
end
Binary file not shown.
@@ -0,0 +1,19 @@
//
// AdaptiveController.h
// AdaptiveController
//
// Created by Arcilite on 24.09.14.
// Copyright (c) 2014 Ramotion. All rights reserved.
//
#import <UIKit/UIKit.h>
//! Project version number for AdaptiveController.
FOUNDATION_EXPORT double AdaptiveControllerVersionNumber;
//! Project version string for AdaptiveController.
FOUNDATION_EXPORT const unsigned char AdaptiveControllerVersionString[];
// In this header, you should import all the public headers of your framework using statements like #import <AdaptiveController/PublicHeader.h>

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File
-33
View File
@@ -1,33 +0,0 @@
# Contributing to a Project
Now that youve found the material for understanding the project, here is how you can take action.
### Create an Issue
If you find a bug in a project youre using (and you dont know how to fix it), have trouble following the documentation or have a question about the project create an issue! Theres nothing to it and whatever issue youre having, youre likely not the only one, so others will find your issue helpful, too. For more information on how issues work, check out our Issues guide.
#### Issues Pro Tips
Check existing issues for your issue. Duplicating an issue is slower for both parties so search through open and closed issues to see if what youre running into has been addressed already.
Be clear about what your problem is: what was the expected outcome, what happened instead? Detail how someone else can recreate the problem.
Link to demos recreating the problem on things like JSFiddle or CodePen.
Include system details like what the browser, library or operating system youre using and its version.
Paste error output or logs in your issue or in a Gist. If pasting them in the issue, wrap it in three backticks: ``` so that it renders nicely.
### Pull Request
If youre able to patch the bug or add the feature yourself fantastic, make a pull request with the code! Be sure youve read any documents on contributing, understand the license and have signed a CLA if required. Once youve submitted a pull request the maintainer(s) can compare your branch to the existing one and decide whether or not to incorporate (pull in) your changes.
#### Pull Request Pro Tips
Fork the repository and clone it locally. Connect your local to the original upstream repository by adding it as a remote. Pull in changes from upstream often so that you stay up to date so that when you submit your pull request, merge conflicts will be less likely. See more detailed instructions here.
Create a branch for your edits.
Be clear about what problem is occurring and how someone can recreate that problem or why your feature will help. Then be equally as clear about the steps you took to make your changes.
Its best to test. Run your changes against any existing tests if they exist and create new ones when needed. Whether tests exist or not, make sure your changes dont break the existing project.
Include screenshots of the before and after if your changes include differences in HTML/CSS. Drag and drop the images into the body of your pull request.
Contribute in the style of the project to the best of your abilities. This may mean using indents, semi colons or comments differently than you would in your own repository, but makes it easier for the maintainer to merge, others to understand and maintain in the future.
#### Open Pull Requests
Once youve opened a pull request a discussion will start around your proposed changes. Other contributors and users may chime in, but ultimately the decision is made by the maintainer(s). You may be asked to make some changes to your pull request, if so, add more commits to your branch and push them theyll automatically go into the existing pull request.
If your pull request is merged great! If it is not, no sweat, it may not be what the project maintainer had in mind, or they were already working on it. This happens, so our recommendation is to take any feedback youve received and go forth and pull request again or create your own open source project.
+45
View File
@@ -0,0 +1,45 @@
platform :ios, "7.0"
source 'https://github.com/CocoaPods/Specs.git'
workspace 'SamplesAdaptiveController.xcworkspace'
xcodeproj 'Samples/adaptive-dates-tabbar/example-date-adaptive-tab-bar.xcodeproj'
xcodeproj 'Samples/adaptive-launches-tabbar/example-count-launches-adaptive-tabbar.xcodeproj'
link_with ['example-count-launches-adaptive-tabbar', 'example-date-adaptive-tab-bar']
target 'example-date-adaptive-tab-bar' , :exclusive => true do
xcodeproj 'Samples/adaptive-dates-tabbar/example-date-adaptive-tab-bar.xcodeproj'
pod "AdaptiveController", :path => "./AdaptiveController-0.0.1"
end
target 'example-count-launches-adaptive-tabbar' , :exclusive => true do
xcodeproj 'Samples/adaptive-launches-tabbar/example-count-launches-adaptive-tabbar.xcodeproj'
pod "AdaptiveController", :path => "./AdaptiveController-0.0.1"
end
post_install do |installer|
installer.project.targets.each do |target|
puts "#{target.name}"
end
end
#post_install do |installer|
# settings = Xcodeproj::Project.send(:build_settings, Pod::Platform.new(:ios), :debug)
# configs = installer.project.build_configurations
# configs.new('name' => 'Spec', 'buildSettings' => settings.merge('CONFIGURATION_BUILD_DIR' => '$(BUILD_DIR)/Debug$(EFFECTIVE_PLATFORM_NAME)'))
#end
#post_install do |installer_representation|
# workDir = Dir.pwd
# xcconfigFilename = "#{workDir}/Pods/Target Support Files/Pods-AdaptiveController/Pods-AdaptiveController.xcconfig"
# xcconfig = File.read(xcconfigFilename)
# newXcconfig = xcconfig.gsub(/HEADER_SEARCH_PATHS = "/, "HEADER_SEARCH_PATHS = $(inherited) \"")
# File.open(xcconfigFilename, "w") { |file| file << newXcconfig }
#end
+14
View File
@@ -0,0 +1,14 @@
PODS:
- AdaptiveController (0.0.1)
DEPENDENCIES:
- AdaptiveController (from `./AdaptiveController-0.0.1`)
EXTERNAL SOURCES:
AdaptiveController:
:path: ./AdaptiveController-0.0.1
SPEC CHECKSUMS:
AdaptiveController: f21b5cff66a025b30addf870a593a3350a44d8e3
COCOAPODS: 0.34.4
+21
View File
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'AdaptiveController'
s.version = '0.0.1'
s.summary = 'AdaptiveController is a Progressive Reduction Swift module for adding custom states to Native or Custom UI elements.'
s.license = {"type"=>"MIT"}
s.authors = {"Artem Kislitsyn, Yuri Vasilenko"=>"juri.v@ramotion.com"}
s.homepage = 'https://github.com/Ramotion/adaptive-tab-bar'
s.frameworks = ["UIKit"]
s.requires_arc = true
s.source = {}
s.osx.platform = :osx, ''
s.osx.preserve_paths = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.osx.public_header_files = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework/Versions/A/Headers/*.h'
s.osx.vendored_frameworks = 'AdaptiveController-0.0.1/osx/AdaptiveController.framework'
s.ios.platform = :ios, "7.0"
s.ios.preserve_paths = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
s.ios.public_header_files = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework/Versions/A/Headers/*.h'
s.ios.vendored_frameworks = 'AdaptiveController-0.0.1/ios/AdaptiveController.framework'
end
+14
View File
@@ -0,0 +1,14 @@
PODS:
- AdaptiveController (0.0.1)
DEPENDENCIES:
- AdaptiveController (from `./AdaptiveController-0.0.1`)
EXTERNAL SOURCES:
AdaptiveController:
:path: ./AdaptiveController-0.0.1
SPEC CHECKSUMS:
AdaptiveController: f21b5cff66a025b30addf870a593a3350a44d8e3
COCOAPODS: 0.34.4
+1516
View File
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "1423353DF53052B8F07C16F9"
BuildableName = "libPods-example-count-launches-adaptive-tabbar-AdaptiveController.a"
BlueprintName = "Pods-example-count-launches-adaptive-tabbar-AdaptiveController"
ReferencedContainer = "container:Pods.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Debug">
<Testables>
</Testables>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
buildConfiguration = "Debug"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
allowLocationSimulation = "YES">
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
buildConfiguration = "Release"
debugDocumentVersioning = "YES">
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "0B7C5653EC4A060676944D1F"
BuildableName = "libPods-example-count-launches-adaptive-tabbar.a"
BlueprintName = "Pods-example-count-launches-adaptive-tabbar"
ReferencedContainer = "container:Pods.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Debug">
<Testables>
</Testables>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
buildConfiguration = "Debug"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
allowLocationSimulation = "YES">
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
buildConfiguration = "Release"
debugDocumentVersioning = "YES">
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "F41A6FEB8764D6BD888F406D"
BuildableName = "libPods-example-date-adaptive-tab-bar-AdaptiveController.a"
BlueprintName = "Pods-example-date-adaptive-tab-bar-AdaptiveController"
ReferencedContainer = "container:Pods.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Debug">
<Testables>
</Testables>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
buildConfiguration = "Debug"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
allowLocationSimulation = "YES">
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
buildConfiguration = "Release"
debugDocumentVersioning = "YES">
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DBDBD67BBDD08CE8E4AB6D9F"
BuildableName = "libPods-example-date-adaptive-tab-bar.a"
BlueprintName = "Pods-example-date-adaptive-tab-bar"
ReferencedContainer = "container:Pods.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
buildConfiguration = "Debug">
<Testables>
</Testables>
</TestAction>
<LaunchAction
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
buildConfiguration = "Debug"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
allowLocationSimulation = "YES">
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
buildConfiguration = "Release"
debugDocumentVersioning = "YES">
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>SchemeUserState</key>
<dict>
<key>Pods-example-count-launches-adaptive-tabbar-AdaptiveController.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
</dict>
<key>Pods-example-count-launches-adaptive-tabbar.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
</dict>
<key>Pods-example-date-adaptive-tab-bar-AdaptiveController.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
</dict>
<key>Pods-example-date-adaptive-tab-bar.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
</dict>
</dict>
<key>SuppressBuildableAutocreation</key>
<dict>
<key>0B7C5653EC4A060676944D1F</key>
<dict>
<key>primary</key>
<true/>
</dict>
<key>1423353DF53052B8F07C16F9</key>
<dict>
<key>primary</key>
<true/>
</dict>
<key>DBDBD67BBDD08CE8E4AB6D9F</key>
<dict>
<key>primary</key>
<true/>
</dict>
<key>F41A6FEB8764D6BD888F406D</key>
<dict>
<key>primary</key>
<true/>
</dict>
</dict>
</dict>
</plist>
@@ -0,0 +1,5 @@
#include "Pods-example-count-launches-adaptive-tabbar-AdaptiveController.xcconfig"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/AdaptiveController" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_LDFLAGS = ${PODS_EXAMPLE_COUNT_LAUNCHES_ADAPTIVE_TABBAR_ADAPTIVECONTROLLER_OTHER_LDFLAGS} -ObjC
PODS_ROOT = ${SRCROOT}
@@ -0,0 +1,5 @@
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_example_count_launches_adaptive_tabbar_AdaptiveController : NSObject
@end
@implementation PodsDummy_Pods_example_count_launches_adaptive_tabbar_AdaptiveController
@end
@@ -0,0 +1,5 @@
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif
#import "Pods-example-count-launches-adaptive-tabbar-environment.h"
@@ -0,0 +1 @@
PODS_EXAMPLE_COUNT_LAUNCHES_ADAPTIVE_TABBAR_ADAPTIVECONTROLLER_OTHER_LDFLAGS = -framework "UIKit"
@@ -0,0 +1,3 @@
# Acknowledgements
This application makes use of the following third party libraries:
Generated by CocoaPods - http://cocoapods.org
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreferenceSpecifiers</key>
<array>
<dict>
<key>FooterText</key>
<string>This application makes use of the following third party libraries:</string>
<key>Title</key>
<string>Acknowledgements</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>Generated by CocoaPods - http://cocoapods.org</string>
<key>Title</key>
<string></string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
</array>
<key>StringsTable</key>
<string>Acknowledgements</string>
<key>Title</key>
<string>Acknowledgements</string>
</dict>
</plist>
@@ -0,0 +1,5 @@
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_example_count_launches_adaptive_tabbar : NSObject
@end
@implementation PodsDummy_Pods_example_count_launches_adaptive_tabbar
@end
@@ -0,0 +1,14 @@
// To check if a library is compiled with CocoaPods you
// can use the `COCOAPODS` macro definition which is
// defined in the xcconfigs so it is available in
// headers also when they are imported in the client
// project.
// AdaptiveController
#define COCOAPODS_POD_AVAILABLE_AdaptiveController
#define COCOAPODS_VERSION_MAJOR_AdaptiveController 0
#define COCOAPODS_VERSION_MINOR_AdaptiveController 0
#define COCOAPODS_VERSION_PATCH_AdaptiveController 1
@@ -0,0 +1,70 @@
#!/bin/sh
set -e
mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"
install_resource()
{
case $1 in
*.storyboard)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
;;
*.xib)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
;;
*.framework)
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
;;
*.xcdatamodel)
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\""
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom"
;;
*.xcdatamodeld)
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
;;
*.xcassets)
;;
/*)
echo "$1"
echo "$1" >> "$RESOURCES_TO_COPY"
;;
*)
echo "${PODS_ROOT}/$1"
echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY"
;;
esac
}
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]]; then
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
then
case "${TARGETED_DEVICE_FAMILY}" in
1,2)
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
;;
1)
TARGET_DEVICE_ARGS="--target-device iphone"
;;
2)
TARGET_DEVICE_ARGS="--target-device ipad"
;;
*)
TARGET_DEVICE_ARGS="--target-device mac"
;;
esac
find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
@@ -0,0 +1,6 @@
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_LDFLAGS = -ObjC -l"Pods-example-count-launches-adaptive-tabbar-AdaptiveController" -framework "UIKit"
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
PODS_ROOT = ${SRCROOT}/../../Pods
@@ -0,0 +1,6 @@
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_LDFLAGS = -ObjC -l"Pods-example-count-launches-adaptive-tabbar-AdaptiveController" -framework "UIKit"
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
PODS_ROOT = ${SRCROOT}/../../Pods
@@ -0,0 +1,5 @@
#include "Pods-example-date-adaptive-tab-bar-AdaptiveController.xcconfig"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/AdaptiveController" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_LDFLAGS = ${PODS_EXAMPLE_DATE_ADAPTIVE_TAB_BAR_ADAPTIVECONTROLLER_OTHER_LDFLAGS} -ObjC
PODS_ROOT = ${SRCROOT}
@@ -0,0 +1,5 @@
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_example_date_adaptive_tab_bar_AdaptiveController : NSObject
@end
@implementation PodsDummy_Pods_example_date_adaptive_tab_bar_AdaptiveController
@end
@@ -0,0 +1,5 @@
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif
#import "Pods-example-date-adaptive-tab-bar-environment.h"
@@ -0,0 +1 @@
PODS_EXAMPLE_DATE_ADAPTIVE_TAB_BAR_ADAPTIVECONTROLLER_OTHER_LDFLAGS = -framework "UIKit"
@@ -0,0 +1,3 @@
# Acknowledgements
This application makes use of the following third party libraries:
Generated by CocoaPods - http://cocoapods.org
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreferenceSpecifiers</key>
<array>
<dict>
<key>FooterText</key>
<string>This application makes use of the following third party libraries:</string>
<key>Title</key>
<string>Acknowledgements</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>Generated by CocoaPods - http://cocoapods.org</string>
<key>Title</key>
<string></string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
</array>
<key>StringsTable</key>
<string>Acknowledgements</string>
<key>Title</key>
<string>Acknowledgements</string>
</dict>
</plist>
@@ -0,0 +1,5 @@
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_example_date_adaptive_tab_bar : NSObject
@end
@implementation PodsDummy_Pods_example_date_adaptive_tab_bar
@end
@@ -0,0 +1,14 @@
// To check if a library is compiled with CocoaPods you
// can use the `COCOAPODS` macro definition which is
// defined in the xcconfigs so it is available in
// headers also when they are imported in the client
// project.
// AdaptiveController
#define COCOAPODS_POD_AVAILABLE_AdaptiveController
#define COCOAPODS_VERSION_MAJOR_AdaptiveController 0
#define COCOAPODS_VERSION_MINOR_AdaptiveController 0
#define COCOAPODS_VERSION_PATCH_AdaptiveController 1
@@ -0,0 +1,70 @@
#!/bin/sh
set -e
mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"
install_resource()
{
case $1 in
*.storyboard)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
;;
*.xib)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
;;
*.framework)
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
;;
*.xcdatamodel)
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\""
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom"
;;
*.xcdatamodeld)
echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\""
xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd"
;;
*.xcassets)
;;
/*)
echo "$1"
echo "$1" >> "$RESOURCES_TO_COPY"
;;
*)
echo "${PODS_ROOT}/$1"
echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY"
;;
esac
}
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]]; then
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ]
then
case "${TARGETED_DEVICE_FAMILY}" in
1,2)
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
;;
1)
TARGET_DEVICE_ARGS="--target-device iphone"
;;
2)
TARGET_DEVICE_ARGS="--target-device ipad"
;;
*)
TARGET_DEVICE_ARGS="--target-device mac"
;;
esac
find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
@@ -0,0 +1,6 @@
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_LDFLAGS = -ObjC -l"Pods-example-date-adaptive-tab-bar-AdaptiveController" -framework "UIKit"
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
PODS_ROOT = ${SRCROOT}/../../Pods
@@ -0,0 +1,6 @@
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AdaptiveController"
OTHER_LDFLAGS = -ObjC -l"Pods-example-date-adaptive-tab-bar-AdaptiveController" -framework "UIKit"
OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS)
PODS_ROOT = ${SRCROOT}/../../Pods
+3 -17
View File
@@ -1,10 +1,4 @@
![Header](https://cdn.rawgit.com/Ramotion/adaptive-tab-bar/header.svg)
# Adaptive Tab Bar
[![CocoaPods](https://img.shields.io/cocoapods/p/AdaptiveController.svg)](https://cocoapods.org/pods/AdaptiveController)
[![CocoaPods](https://img.shields.io/cocoapods/v/RAMPaperSwitch.svg)](http://cocoapods.org/pods/AdaptiveController)
[![Twitter](https://img.shields.io/badge/Twitter-@Ramotion-blue.svg?style=flat)](http://twitter.com/Ramotion)
[![Travis](https://img.shields.io/travis/Ramotion/adaptive-tab-bar.svg)](https://travis-ci.org/Ramotion/adaptive-tab-bar)
AdaptiveController is a 'Progressive Reduction' Swift module for adding custom states to Native or Custom UI elements.
@@ -170,16 +164,8 @@ In AdaptiveDateState, we add custom init methods which decided what states have
You can customize different UI components if they adopt to the AdaptiveApperanceProtocol.
## Licence
##About us
Adaptive tab bar is released under the MIT license.
See [LICENSE](./LICENSE.md) for details.
## About
The project maintained by [app development agency](http://ramotion.com?utm_source=gthb&utm_medium=special&utm_campaign=paper-switch) [Ramotion Inc.](http://ramotion.com?utm_source=gthb&utm_medium=special&utm_campaign=adaptive-tab-bar)]
See our other [open-source projects](https://github.com/ramotion) or [hire](http://ramotion.com?utm_source=gthb&utm_medium=special&utm_campaign=adaptive-tab-bar) us to design, develop, and grow your product.
[![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=https://github.com/ramotion/adaptive-tab-bar)
[![Twitter Follow](https://img.shields.io/twitter/follow/ramotion.svg?style=social)](https://twitter.com/ramotion)
[Ramotion](http://Ramotion.com) is an iPhone app design and development company. We are ready for new interesting iOS App Development projects.
Follow us on [twitter](http://twitter.com/ramotion).

Some files were not shown because too many files have changed in this diff Show More