Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit

Permalink
Initial Import
Browse files Browse the repository at this point in the history
  • Loading branch information
steipete committed Nov 7, 2014
1 parent 436a70e commit 0dfe77c
Show file tree
Hide file tree
Showing 17 changed files with 1,254 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
.DS_Store

# CocoaPods
#
Expand Down
339 changes: 339 additions & 0 deletions Example/PSTAlertViewControllerSample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,339 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
78E298891A0D0071007953FB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E298881A0D0071007953FB /* main.m */; };
78E2988C1A0D0071007953FB /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E2988B1A0D0071007953FB /* AppDelegate.m */; };
78E2988F1A0D0071007953FB /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E2988E1A0D0071007953FB /* ViewController.m */; };
78E298921A0D0071007953FB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 78E298901A0D0071007953FB /* Main.storyboard */; };
78E298941A0D0071007953FB /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 78E298931A0D0071007953FB /* Images.xcassets */; };
78E298971A0D0071007953FB /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 78E298951A0D0071007953FB /* LaunchScreen.xib */; };
78E298B21A0D0B25007953FB /* PSTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E298B11A0D0B25007953FB /* PSTAlertController.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
78E298831A0D0071007953FB /* PSTAlertViewControllerSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PSTAlertViewControllerSample.app; sourceTree = BUILT_PRODUCTS_DIR; };
78E298871A0D0071007953FB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
78E298881A0D0071007953FB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
78E2988A1A0D0071007953FB /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
78E2988B1A0D0071007953FB /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
78E2988D1A0D0071007953FB /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
78E2988E1A0D0071007953FB /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
78E298911A0D0071007953FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
78E298931A0D0071007953FB /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
78E298961A0D0071007953FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
78E298A11A0D0071007953FB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
78E298A21A0D0071007953FB /* PSTAlertViewControllerSampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PSTAlertViewControllerSampleTests.m; sourceTree = "<group>"; };
78E298B01A0D0B25007953FB /* PSTAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSTAlertController.h; sourceTree = "<group>"; };
78E298B11A0D0B25007953FB /* PSTAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PSTAlertController.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

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

/* Begin PBXGroup section */
78E2987A1A0D0071007953FB = {
isa = PBXGroup;
children = (
78E298851A0D0071007953FB /* PSTAlertViewControllerSample */,
78E2989F1A0D0071007953FB /* PSTAlertViewControllerSampleTests */,
78E298841A0D0071007953FB /* Products */,
);
sourceTree = "<group>";
};
78E298841A0D0071007953FB /* Products */ = {
isa = PBXGroup;
children = (
78E298831A0D0071007953FB /* PSTAlertViewControllerSample.app */,
);
name = Products;
sourceTree = "<group>";
};
78E298851A0D0071007953FB /* PSTAlertViewControllerSample */ = {
isa = PBXGroup;
children = (
78E298AF1A0D0B25007953FB /* PSTAlertController */,
78E2988A1A0D0071007953FB /* AppDelegate.h */,
78E2988B1A0D0071007953FB /* AppDelegate.m */,
78E2988D1A0D0071007953FB /* ViewController.h */,
78E2988E1A0D0071007953FB /* ViewController.m */,
78E298901A0D0071007953FB /* Main.storyboard */,
78E298931A0D0071007953FB /* Images.xcassets */,
78E298951A0D0071007953FB /* LaunchScreen.xib */,
78E298861A0D0071007953FB /* Supporting Files */,
);
path = PSTAlertViewControllerSample;
sourceTree = "<group>";
};
78E298861A0D0071007953FB /* Supporting Files */ = {
isa = PBXGroup;
children = (
78E298871A0D0071007953FB /* Info.plist */,
78E298881A0D0071007953FB /* main.m */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
78E2989F1A0D0071007953FB /* PSTAlertViewControllerSampleTests */ = {
isa = PBXGroup;
children = (
78E298A21A0D0071007953FB /* PSTAlertViewControllerSampleTests.m */,
78E298A01A0D0071007953FB /* Supporting Files */,
);
path = PSTAlertViewControllerSampleTests;
sourceTree = "<group>";
};
78E298A01A0D0071007953FB /* Supporting Files */ = {
isa = PBXGroup;
children = (
78E298A11A0D0071007953FB /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
78E298AF1A0D0B25007953FB /* PSTAlertController */ = {
isa = PBXGroup;
children = (
78E298B01A0D0B25007953FB /* PSTAlertController.h */,
78E298B11A0D0B25007953FB /* PSTAlertController.m */,
);
name = PSTAlertController;
path = ../../PSTAlertController;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
78E298821A0D0071007953FB /* PSTAlertViewControllerSample */ = {
isa = PBXNativeTarget;
buildConfigurationList = 78E298A61A0D0071007953FB /* Build configuration list for PBXNativeTarget "PSTAlertViewControllerSample" */;
buildPhases = (
78E2987F1A0D0071007953FB /* Sources */,
78E298801A0D0071007953FB /* Frameworks */,
78E298811A0D0071007953FB /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = PSTAlertViewControllerSample;
productName = PSTAlertViewControllerSample;
productReference = 78E298831A0D0071007953FB /* PSTAlertViewControllerSample.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
78E2987B1A0D0071007953FB /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0610;
ORGANIZATIONNAME = "PSPDFKit GmbH";
TargetAttributes = {
78E298821A0D0071007953FB = {
CreatedOnToolsVersion = 6.1;
};
};
};
buildConfigurationList = 78E2987E1A0D0071007953FB /* Build configuration list for PBXProject "PSTAlertViewControllerSample" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 78E2987A1A0D0071007953FB;
productRefGroup = 78E298841A0D0071007953FB /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
78E298821A0D0071007953FB /* PSTAlertViewControllerSample */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
78E298811A0D0071007953FB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
78E298921A0D0071007953FB /* Main.storyboard in Resources */,
78E298971A0D0071007953FB /* LaunchScreen.xib in Resources */,
78E298941A0D0071007953FB /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
78E2987F1A0D0071007953FB /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
78E2988F1A0D0071007953FB /* ViewController.m in Sources */,
78E2988C1A0D0071007953FB /* AppDelegate.m in Sources */,
78E298B21A0D0B25007953FB /* PSTAlertController.m in Sources */,
78E298891A0D0071007953FB /* main.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
78E298901A0D0071007953FB /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
78E298911A0D0071007953FB /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
78E298951A0D0071007953FB /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
78E298961A0D0071007953FB /* Base */,
);
name = LaunchScreen.xib;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
78E298A41A0D0071007953FB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
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_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
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 = 8.1;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
78E298A51A0D0071007953FB /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
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_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
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 = 8.1;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
78E298A71A0D0071007953FB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = PSTAlertViewControllerSample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
78E298A81A0D0071007953FB /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = PSTAlertViewControllerSample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
78E2987E1A0D0071007953FB /* Build configuration list for PBXProject "PSTAlertViewControllerSample" */ = {
isa = XCConfigurationList;
buildConfigurations = (
78E298A41A0D0071007953FB /* Debug */,
78E298A51A0D0071007953FB /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
78E298A61A0D0071007953FB /* Build configuration list for PBXNativeTarget "PSTAlertViewControllerSample" */ = {
isa = XCConfigurationList;
buildConfigurations = (
78E298A71A0D0071007953FB /* Debug */,
78E298A81A0D0071007953FB /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 78E2987B1A0D0071007953FB /* Project object */;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Example/PSTAlertViewControllerSample/AppDelegate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// AppDelegate.h
// PSTAlertViewControllerSample
//
// Created by Peter Steinberger on 07/11/14.
// Copyright (c) 2014 PSPDFKit GmbH. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;


@end

18 changes: 18 additions & 0 deletions Example/PSTAlertViewControllerSample/AppDelegate.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// AppDelegate.m
// PSTAlertViewControllerSample
//
// Created by Peter Steinberger on 07/11/14.
// Copyright (c) 2014 PSPDFKit GmbH. All rights reserved.
//

#import "AppDelegate.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
return YES;
}

@end
Loading

0 comments on commit 0dfe77c

Please sign in to comment.