Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
skyfoxs committed Nov 3, 2016
0 parents commit 4c64335
Show file tree
Hide file tree
Showing 9 changed files with 642 additions and 0 deletions.
89 changes: 89 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@

# Created by https://www.gitignore.io/api/xco,xcode,swift,git

#!! ERROR: xco is undefined. Use list command to see defined gitignore types !!#

### Xcode ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint


### Swift ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated

## Various settings

## Other
*.xcuserstate

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output


### Git ###
*.orig
309 changes: 309 additions & 0 deletions RightImageButton.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,309 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
D89789471DCB86C9004AE7FA /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D89789461DCB86C9004AE7FA /* AppDelegate.swift */; };
D89789491DCB86C9004AE7FA /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D89789481DCB86C9004AE7FA /* ViewController.swift */; };
D897894C1DCB86C9004AE7FA /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D897894A1DCB86C9004AE7FA /* Main.storyboard */; };
D897894E1DCB86C9004AE7FA /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D897894D1DCB86C9004AE7FA /* Assets.xcassets */; };
D89789511DCB86C9004AE7FA /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D897894F1DCB86C9004AE7FA /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
D89789431DCB86C9004AE7FA /* RightImageButton.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RightImageButton.app; sourceTree = BUILT_PRODUCTS_DIR; };
D89789461DCB86C9004AE7FA /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
D89789481DCB86C9004AE7FA /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
D897894B1DCB86C9004AE7FA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
D897894D1DCB86C9004AE7FA /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
D89789501DCB86C9004AE7FA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
D89789521DCB86C9004AE7FA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
D89789401DCB86C9004AE7FA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
D897893A1DCB86C9004AE7FA = {
isa = PBXGroup;
children = (
D89789451DCB86C9004AE7FA /* RightImageButton */,
D89789441DCB86C9004AE7FA /* Products */,
);
sourceTree = "<group>";
};
D89789441DCB86C9004AE7FA /* Products */ = {
isa = PBXGroup;
children = (
D89789431DCB86C9004AE7FA /* RightImageButton.app */,
);
name = Products;
sourceTree = "<group>";
};
D89789451DCB86C9004AE7FA /* RightImageButton */ = {
isa = PBXGroup;
children = (
D89789461DCB86C9004AE7FA /* AppDelegate.swift */,
D89789481DCB86C9004AE7FA /* ViewController.swift */,
D897894A1DCB86C9004AE7FA /* Main.storyboard */,
D897894D1DCB86C9004AE7FA /* Assets.xcassets */,
D897894F1DCB86C9004AE7FA /* LaunchScreen.storyboard */,
D89789521DCB86C9004AE7FA /* Info.plist */,
);
path = RightImageButton;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
D89789421DCB86C9004AE7FA /* RightImageButton */ = {
isa = PBXNativeTarget;
buildConfigurationList = D89789551DCB86C9004AE7FA /* Build configuration list for PBXNativeTarget "RightImageButton" */;
buildPhases = (
D897893F1DCB86C9004AE7FA /* Sources */,
D89789401DCB86C9004AE7FA /* Frameworks */,
D89789411DCB86C9004AE7FA /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = RightImageButton;
productName = RightImageButton;
productReference = D89789431DCB86C9004AE7FA /* RightImageButton.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
D897893B1DCB86C9004AE7FA /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0810;
LastUpgradeCheck = 0810;
ORGANIZATIONNAME = "Supakit Thanadittagorn";
TargetAttributes = {
D89789421DCB86C9004AE7FA = {
CreatedOnToolsVersion = 8.1;
DevelopmentTeam = 934E82A6FW;
ProvisioningStyle = Automatic;
};
};
};
buildConfigurationList = D897893E1DCB86C9004AE7FA /* Build configuration list for PBXProject "RightImageButton" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = D897893A1DCB86C9004AE7FA;
productRefGroup = D89789441DCB86C9004AE7FA /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
D89789421DCB86C9004AE7FA /* RightImageButton */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
D89789411DCB86C9004AE7FA /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D89789511DCB86C9004AE7FA /* LaunchScreen.storyboard in Resources */,
D897894E1DCB86C9004AE7FA /* Assets.xcassets in Resources */,
D897894C1DCB86C9004AE7FA /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
D897893F1DCB86C9004AE7FA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
D89789491DCB86C9004AE7FA /* ViewController.swift in Sources */,
D89789471DCB86C9004AE7FA /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
D897894A1DCB86C9004AE7FA /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
D897894B1DCB86C9004AE7FA /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
D897894F1DCB86C9004AE7FA /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
D89789501DCB86C9004AE7FA /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
D89789531DCB86C9004AE7FA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVES = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10.1;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
D89789541DCB86C9004AE7FA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVES = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 10.1;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
D89789561DCB86C9004AE7FA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = 934E82A6FW;
INFOPLIST_FILE = RightImageButton/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.supakit.RightImageButton;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
};
name = Debug;
};
D89789571DCB86C9004AE7FA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = 934E82A6FW;
INFOPLIST_FILE = RightImageButton/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.supakit.RightImageButton;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
D897893E1DCB86C9004AE7FA /* Build configuration list for PBXProject "RightImageButton" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D89789531DCB86C9004AE7FA /* Debug */,
D89789541DCB86C9004AE7FA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
D89789551DCB86C9004AE7FA /* Build configuration list for PBXNativeTarget "RightImageButton" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D89789561DCB86C9004AE7FA /* Debug */,
D89789571DCB86C9004AE7FA /* Release */,
);
defaultConfigurationIsVisible = 0;
};
/* End XCConfigurationList section */
};
rootObject = D897893B1DCB86C9004AE7FA /* Project object */;
}
Loading

0 comments on commit 4c64335

Please sign in to comment.