From 045f91c4464632168e65f3ecdff86b6889eedd9f Mon Sep 17 00:00:00 2001 From: Ian Donovan Date: Tue, 17 Apr 2012 23:04:48 -0400 Subject: [PATCH] Initial Commit --- .DS_Store | Bin 0 -> 6148 bytes Readme.md | 17 + TrashBox.xcodeproj/project.pbxproj | 447 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate | Bin 0 -> 8304 bytes .../xcschemes/TrashBox.xcscheme | 94 ++++ .../xcschemes/xcschememanagement.plist | 27 ++ TrashBox/AppDelegate.h | 19 + TrashBox/AppDelegate.m | 67 +++ TrashBox/TrashBox-Info.plist | 41 ++ TrashBox/TrashBox-Prefix.pch | 14 + TrashBox/ViewController.h | 13 + TrashBox/ViewController.m | 60 +++ TrashBox/en.lproj/InfoPlist.strings | 2 + TrashBox/en.lproj/ViewController.xib | 120 +++++ TrashBox/main.m | 18 + TrashBoxTests/TrashBoxTests-Info.plist | 22 + TrashBoxTests/TrashBoxTests.h | 13 + TrashBoxTests/TrashBoxTests.m | 32 ++ TrashBoxTests/en.lproj/InfoPlist.strings | 2 + 20 files changed, 1015 insertions(+) create mode 100644 .DS_Store create mode 100644 Readme.md create mode 100644 TrashBox.xcodeproj/project.pbxproj create mode 100644 TrashBox.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 TrashBox.xcodeproj/project.xcworkspace/xcuserdata/iandonovan.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 TrashBox.xcodeproj/xcuserdata/iandonovan.xcuserdatad/xcschemes/TrashBox.xcscheme create mode 100644 TrashBox.xcodeproj/xcuserdata/iandonovan.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 TrashBox/AppDelegate.h create mode 100644 TrashBox/AppDelegate.m create mode 100644 TrashBox/TrashBox-Info.plist create mode 100644 TrashBox/TrashBox-Prefix.pch create mode 100644 TrashBox/ViewController.h create mode 100644 TrashBox/ViewController.m create mode 100644 TrashBox/en.lproj/InfoPlist.strings create mode 100644 TrashBox/en.lproj/ViewController.xib create mode 100644 TrashBox/main.m create mode 100644 TrashBoxTests/TrashBoxTests-Info.plist create mode 100644 TrashBoxTests/TrashBoxTests.h create mode 100644 TrashBoxTests/TrashBoxTests.m create mode 100644 TrashBoxTests/en.lproj/InfoPlist.strings diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..96f516e4133abe10e115273cecbd833b7fb46be4 GIT binary patch literal 6148 zcmeHKO-sW-5PhRPR75GByt%(X@E_K(<#f+_?X3_Z+PV|dFBE&mq;1?M91~#5Y3;+NC literal 0 HcmV?d00001 diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..7df800a --- /dev/null +++ b/Readme.md @@ -0,0 +1,17 @@ +# TrashBox + +## Introduction +I'm currently enrolled in a "Music Apps For iPad" course at Tufts. Our final project is called "TrashBox," and it mainly focuses on three components: + +1. The application will record audio from the microphone or line-in; this audio is supplied by the user. We envision this being an instrument signal (guitar, keyboard) but voice will also work. Voice may have some neat applications, actually. MIDI is another option on the table, but converting MIDI into audio is a technology with which we're not entirely familiar. + +2. The user will be able to create filters for this audio signal through use of the accelerometer (shaking the iPad) and the camera. After taking a picture, for instance, the application will analyze the color map of the image and use these values to create coefficients for a filter. The same process is done with the accelerometer, only the force vector will replace the color map. These filters will then be saved in the application for later use. + +This is really the meat of the project, since it involves functionality of the iPad to which we haven't been exposed. It's also where all the cool stuff happens, so it's a tradeoff. + +3. The filters can then be applied to the recorded audio in both series and parallel. A series application would have one effect on, then off, followed by another effect. Parallel would entail multiple effects layered on top of another. + +## Use +The idea behind this application came from the realization that many signal processing applications come boxed with a few different effects like distortion, flange, chorus, and reverb. What happens if we allow the user to tweak these parameters? Wouldn't it be cool to shake the iPad and add vibrato to the sound? + +As an extension of this, the filters may sound like total garbage. It's up to the user to make things sound good. We're providing the tools, and we're confident that the end results will have the ABILITY to sound great, but with great customization comes great responsibility. diff --git a/TrashBox.xcodeproj/project.pbxproj b/TrashBox.xcodeproj/project.pbxproj new file mode 100644 index 0000000..cd30238 --- /dev/null +++ b/TrashBox.xcodeproj/project.pbxproj @@ -0,0 +1,447 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + CD3371EA153E64DD004CBCCB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD3371E9153E64DD004CBCCB /* UIKit.framework */; }; + CD3371EC153E64DD004CBCCB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD3371EB153E64DD004CBCCB /* Foundation.framework */; }; + CD3371EE153E64DD004CBCCB /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD3371ED153E64DD004CBCCB /* CoreGraphics.framework */; }; + CD3371F4153E64DD004CBCCB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CD3371F2153E64DD004CBCCB /* InfoPlist.strings */; }; + CD3371F6153E64DD004CBCCB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3371F5153E64DD004CBCCB /* main.m */; }; + CD3371FA153E64DD004CBCCB /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3371F9153E64DD004CBCCB /* AppDelegate.m */; }; + CD3371FD153E64DD004CBCCB /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3371FC153E64DD004CBCCB /* ViewController.m */; }; + CD337200153E64DD004CBCCB /* ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD3371FE153E64DD004CBCCB /* ViewController.xib */; }; + CD337208153E64DD004CBCCB /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD337207153E64DD004CBCCB /* SenTestingKit.framework */; }; + CD337209153E64DD004CBCCB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD3371E9153E64DD004CBCCB /* UIKit.framework */; }; + CD33720A153E64DD004CBCCB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD3371EB153E64DD004CBCCB /* Foundation.framework */; }; + CD337212153E64DD004CBCCB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CD337210153E64DD004CBCCB /* InfoPlist.strings */; }; + CD337215153E64DD004CBCCB /* TrashBoxTests.m in Sources */ = {isa = PBXBuildFile; fileRef = CD337214153E64DD004CBCCB /* TrashBoxTests.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + CD33720B153E64DD004CBCCB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = CD3371DC153E64DD004CBCCB /* Project object */; + proxyType = 1; + remoteGlobalIDString = CD3371E4153E64DD004CBCCB; + remoteInfo = TrashBox; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + CD3371E5153E64DD004CBCCB /* TrashBox.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TrashBox.app; sourceTree = BUILT_PRODUCTS_DIR; }; + CD3371E9153E64DD004CBCCB /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + CD3371EB153E64DD004CBCCB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + CD3371ED153E64DD004CBCCB /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + CD3371F1153E64DD004CBCCB /* TrashBox-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TrashBox-Info.plist"; sourceTree = ""; }; + CD3371F3153E64DD004CBCCB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + CD3371F5153E64DD004CBCCB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + CD3371F7153E64DD004CBCCB /* TrashBox-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TrashBox-Prefix.pch"; sourceTree = ""; }; + CD3371F8153E64DD004CBCCB /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + CD3371F9153E64DD004CBCCB /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; + CD3371FB153E64DD004CBCCB /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; + CD3371FC153E64DD004CBCCB /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; + CD3371FF153E64DD004CBCCB /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController.xib; sourceTree = ""; }; + CD337206153E64DD004CBCCB /* TrashBoxTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TrashBoxTests.octest; sourceTree = BUILT_PRODUCTS_DIR; }; + CD337207153E64DD004CBCCB /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; }; + CD33720F153E64DD004CBCCB /* TrashBoxTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TrashBoxTests-Info.plist"; sourceTree = ""; }; + CD337211153E64DD004CBCCB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + CD337213153E64DD004CBCCB /* TrashBoxTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TrashBoxTests.h; sourceTree = ""; }; + CD337214153E64DD004CBCCB /* TrashBoxTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TrashBoxTests.m; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + CD3371E2153E64DD004CBCCB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + CD3371EA153E64DD004CBCCB /* UIKit.framework in Frameworks */, + CD3371EC153E64DD004CBCCB /* Foundation.framework in Frameworks */, + CD3371EE153E64DD004CBCCB /* CoreGraphics.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CD337202153E64DD004CBCCB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + CD337208153E64DD004CBCCB /* SenTestingKit.framework in Frameworks */, + CD337209153E64DD004CBCCB /* UIKit.framework in Frameworks */, + CD33720A153E64DD004CBCCB /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + CD3371DA153E64DD004CBCCB = { + isa = PBXGroup; + children = ( + CD3371EF153E64DD004CBCCB /* TrashBox */, + CD33720D153E64DD004CBCCB /* TrashBoxTests */, + CD3371E8153E64DD004CBCCB /* Frameworks */, + CD3371E6153E64DD004CBCCB /* Products */, + ); + sourceTree = ""; + }; + CD3371E6153E64DD004CBCCB /* Products */ = { + isa = PBXGroup; + children = ( + CD3371E5153E64DD004CBCCB /* TrashBox.app */, + CD337206153E64DD004CBCCB /* TrashBoxTests.octest */, + ); + name = Products; + sourceTree = ""; + }; + CD3371E8153E64DD004CBCCB /* Frameworks */ = { + isa = PBXGroup; + children = ( + CD3371E9153E64DD004CBCCB /* UIKit.framework */, + CD3371EB153E64DD004CBCCB /* Foundation.framework */, + CD3371ED153E64DD004CBCCB /* CoreGraphics.framework */, + CD337207153E64DD004CBCCB /* SenTestingKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + CD3371EF153E64DD004CBCCB /* TrashBox */ = { + isa = PBXGroup; + children = ( + CD3371F8153E64DD004CBCCB /* AppDelegate.h */, + CD3371F9153E64DD004CBCCB /* AppDelegate.m */, + CD3371FB153E64DD004CBCCB /* ViewController.h */, + CD3371FC153E64DD004CBCCB /* ViewController.m */, + CD3371FE153E64DD004CBCCB /* ViewController.xib */, + CD3371F0153E64DD004CBCCB /* Supporting Files */, + ); + path = TrashBox; + sourceTree = ""; + }; + CD3371F0153E64DD004CBCCB /* Supporting Files */ = { + isa = PBXGroup; + children = ( + CD3371F1153E64DD004CBCCB /* TrashBox-Info.plist */, + CD3371F2153E64DD004CBCCB /* InfoPlist.strings */, + CD3371F5153E64DD004CBCCB /* main.m */, + CD3371F7153E64DD004CBCCB /* TrashBox-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + CD33720D153E64DD004CBCCB /* TrashBoxTests */ = { + isa = PBXGroup; + children = ( + CD337213153E64DD004CBCCB /* TrashBoxTests.h */, + CD337214153E64DD004CBCCB /* TrashBoxTests.m */, + CD33720E153E64DD004CBCCB /* Supporting Files */, + ); + path = TrashBoxTests; + sourceTree = ""; + }; + CD33720E153E64DD004CBCCB /* Supporting Files */ = { + isa = PBXGroup; + children = ( + CD33720F153E64DD004CBCCB /* TrashBoxTests-Info.plist */, + CD337210153E64DD004CBCCB /* InfoPlist.strings */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + CD3371E4153E64DD004CBCCB /* TrashBox */ = { + isa = PBXNativeTarget; + buildConfigurationList = CD337218153E64DD004CBCCB /* Build configuration list for PBXNativeTarget "TrashBox" */; + buildPhases = ( + CD3371E1153E64DD004CBCCB /* Sources */, + CD3371E2153E64DD004CBCCB /* Frameworks */, + CD3371E3153E64DD004CBCCB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = TrashBox; + productName = TrashBox; + productReference = CD3371E5153E64DD004CBCCB /* TrashBox.app */; + productType = "com.apple.product-type.application"; + }; + CD337205153E64DD004CBCCB /* TrashBoxTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = CD33721B153E64DD004CBCCB /* Build configuration list for PBXNativeTarget "TrashBoxTests" */; + buildPhases = ( + CD337201153E64DD004CBCCB /* Sources */, + CD337202153E64DD004CBCCB /* Frameworks */, + CD337203153E64DD004CBCCB /* Resources */, + CD337204153E64DD004CBCCB /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + CD33720C153E64DD004CBCCB /* PBXTargetDependency */, + ); + name = TrashBoxTests; + productName = TrashBoxTests; + productReference = CD337206153E64DD004CBCCB /* TrashBoxTests.octest */; + productType = "com.apple.product-type.bundle"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + CD3371DC153E64DD004CBCCB /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0420; + ORGANIZATIONNAME = "Tufts University"; + }; + buildConfigurationList = CD3371DF153E64DD004CBCCB /* Build configuration list for PBXProject "TrashBox" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = CD3371DA153E64DD004CBCCB; + productRefGroup = CD3371E6153E64DD004CBCCB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + CD3371E4153E64DD004CBCCB /* TrashBox */, + CD337205153E64DD004CBCCB /* TrashBoxTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + CD3371E3153E64DD004CBCCB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CD3371F4153E64DD004CBCCB /* InfoPlist.strings in Resources */, + CD337200153E64DD004CBCCB /* ViewController.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CD337203153E64DD004CBCCB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CD337212153E64DD004CBCCB /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + CD337204153E64DD004CBCCB /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + CD3371E1153E64DD004CBCCB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CD3371F6153E64DD004CBCCB /* main.m in Sources */, + CD3371FA153E64DD004CBCCB /* AppDelegate.m in Sources */, + CD3371FD153E64DD004CBCCB /* ViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CD337201153E64DD004CBCCB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CD337215153E64DD004CBCCB /* TrashBoxTests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + CD33720C153E64DD004CBCCB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = CD3371E4153E64DD004CBCCB /* TrashBox */; + targetProxy = CD33720B153E64DD004CBCCB /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + CD3371F2153E64DD004CBCCB /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + CD3371F3153E64DD004CBCCB /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + CD3371FE153E64DD004CBCCB /* ViewController.xib */ = { + isa = PBXVariantGroup; + children = ( + CD3371FF153E64DD004CBCCB /* en */, + ); + name = ViewController.xib; + sourceTree = ""; + }; + CD337210153E64DD004CBCCB /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + CD337211153E64DD004CBCCB /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + CD337216153E64DD004CBCCB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + 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_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = 2; + }; + name = Debug; + }; + CD337217153E64DD004CBCCB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + CLANG_ENABLE_OBJC_ARC = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; + OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = 2; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + CD337219153E64DD004CBCCB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "TrashBox/TrashBox-Prefix.pch"; + INFOPLIST_FILE = "TrashBox/TrashBox-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + CD33721A153E64DD004CBCCB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "TrashBox/TrashBox-Prefix.pch"; + INFOPLIST_FILE = "TrashBox/TrashBox-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; + CD33721C153E64DD004CBCCB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TrashBox.app/TrashBox"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(DEVELOPER_LIBRARY_DIR)/Frameworks", + ); + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "TrashBox/TrashBox-Prefix.pch"; + INFOPLIST_FILE = "TrashBoxTests/TrashBoxTests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUNDLE_LOADER)"; + WRAPPER_EXTENSION = octest; + }; + name = Debug; + }; + CD33721D153E64DD004CBCCB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TrashBox.app/TrashBox"; + FRAMEWORK_SEARCH_PATHS = ( + "$(SDKROOT)/Developer/Library/Frameworks", + "$(DEVELOPER_LIBRARY_DIR)/Frameworks", + ); + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "TrashBox/TrashBox-Prefix.pch"; + INFOPLIST_FILE = "TrashBoxTests/TrashBoxTests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TEST_HOST = "$(BUNDLE_LOADER)"; + WRAPPER_EXTENSION = octest; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + CD3371DF153E64DD004CBCCB /* Build configuration list for PBXProject "TrashBox" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CD337216153E64DD004CBCCB /* Debug */, + CD337217153E64DD004CBCCB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CD337218153E64DD004CBCCB /* Build configuration list for PBXNativeTarget "TrashBox" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CD337219153E64DD004CBCCB /* Debug */, + CD33721A153E64DD004CBCCB /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + CD33721B153E64DD004CBCCB /* Build configuration list for PBXNativeTarget "TrashBoxTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + CD33721C153E64DD004CBCCB /* Debug */, + CD33721D153E64DD004CBCCB /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; +/* End XCConfigurationList section */ + }; + rootObject = CD3371DC153E64DD004CBCCB /* Project object */; +} diff --git a/TrashBox.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TrashBox.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..5fc3524 --- /dev/null +++ b/TrashBox.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/TrashBox.xcodeproj/project.xcworkspace/xcuserdata/iandonovan.xcuserdatad/UserInterfaceState.xcuserstate b/TrashBox.xcodeproj/project.xcworkspace/xcuserdata/iandonovan.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..abd642cb06d3294b2f9332647fe6e8748606f814 GIT binary patch literal 8304 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 QA5hx=|6S#O + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TrashBox.xcodeproj/xcuserdata/iandonovan.xcuserdatad/xcschemes/xcschememanagement.plist b/TrashBox.xcodeproj/xcuserdata/iandonovan.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..6a7d2cf --- /dev/null +++ b/TrashBox.xcodeproj/xcuserdata/iandonovan.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,27 @@ + + + + + SchemeUserState + + TrashBox.xcscheme + + orderHint + 0 + + + SuppressBuildableAutocreation + + CD3371E4153E64DD004CBCCB + + primary + + + CD337205153E64DD004CBCCB + + primary + + + + + diff --git a/TrashBox/AppDelegate.h b/TrashBox/AppDelegate.h new file mode 100644 index 0000000..1c5fd1f --- /dev/null +++ b/TrashBox/AppDelegate.h @@ -0,0 +1,19 @@ +// +// AppDelegate.h +// TrashBox +// +// Created by Ian Donovan on 4/17/12. +// Copyright (c) 2012 Tufts University. All rights reserved. +// + +#import + +@class ViewController; + +@interface AppDelegate : UIResponder + +@property (strong, nonatomic) UIWindow *window; + +@property (strong, nonatomic) ViewController *viewController; + +@end diff --git a/TrashBox/AppDelegate.m b/TrashBox/AppDelegate.m new file mode 100644 index 0000000..124596d --- /dev/null +++ b/TrashBox/AppDelegate.m @@ -0,0 +1,67 @@ +// +// AppDelegate.m +// TrashBox +// +// Created by Ian Donovan on 4/17/12. +// Copyright (c) 2012 Tufts University. All rights reserved. +// + +#import "AppDelegate.h" + +#import "ViewController.h" + +@implementation AppDelegate + +@synthesize window = _window; +@synthesize viewController = _viewController; + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; + // Override point for customization after application launch. + self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil]; + self.window.rootViewController = self.viewController; + [self.window makeKeyAndVisible]; + return YES; +} + +- (void)applicationWillResignActive:(UIApplication *)application +{ + /* + Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. + Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. + */ +} + +- (void)applicationDidEnterBackground:(UIApplication *)application +{ + /* + Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. + If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. + */ +} + +- (void)applicationWillEnterForeground:(UIApplication *)application +{ + /* + Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. + */ +} + +- (void)applicationDidBecomeActive:(UIApplication *)application +{ + /* + Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. + */ +} + +- (void)applicationWillTerminate:(UIApplication *)application +{ + /* + Called when the application is about to terminate. + Save data if appropriate. + See also applicationDidEnterBackground:. + */ +} + +@end diff --git a/TrashBox/TrashBox-Info.plist b/TrashBox/TrashBox-Info.plist new file mode 100644 index 0000000..b4f194a --- /dev/null +++ b/TrashBox/TrashBox-Info.plist @@ -0,0 +1,41 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFiles + + CFBundleIdentifier + Tufts-University.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + LSRequiresIPhoneOS + + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/TrashBox/TrashBox-Prefix.pch b/TrashBox/TrashBox-Prefix.pch new file mode 100644 index 0000000..4a62fdd --- /dev/null +++ b/TrashBox/TrashBox-Prefix.pch @@ -0,0 +1,14 @@ +// +// Prefix header for all source files of the 'TrashBox' target in the 'TrashBox' project +// + +#import + +#ifndef __IPHONE_4_0 +#warning "This project uses features only available in iOS SDK 4.0 and later." +#endif + +#ifdef __OBJC__ + #import + #import +#endif diff --git a/TrashBox/ViewController.h b/TrashBox/ViewController.h new file mode 100644 index 0000000..5f242be --- /dev/null +++ b/TrashBox/ViewController.h @@ -0,0 +1,13 @@ +// +// ViewController.h +// TrashBox +// +// Created by Ian Donovan on 4/17/12. +// Copyright (c) 2012 Tufts University. All rights reserved. +// + +#import + +@interface ViewController : UIViewController + +@end diff --git a/TrashBox/ViewController.m b/TrashBox/ViewController.m new file mode 100644 index 0000000..04ad8d8 --- /dev/null +++ b/TrashBox/ViewController.m @@ -0,0 +1,60 @@ +// +// ViewController.m +// TrashBox +// +// Created by Ian Donovan on 4/17/12. +// Copyright (c) 2012 Tufts University. All rights reserved. +// + +#import "ViewController.h" + +@implementation ViewController + +- (void)didReceiveMemoryWarning +{ + [super didReceiveMemoryWarning]; + // Release any cached data, images, etc that aren't in use. +} + +#pragma mark - View lifecycle + +- (void)viewDidLoad +{ + [super viewDidLoad]; + // Do any additional setup after loading the view, typically from a nib. +} + +- (void)viewDidUnload +{ + [super viewDidUnload]; + // Release any retained subviews of the main view. + // e.g. self.myOutlet = nil; +} + +- (void)viewWillAppear:(BOOL)animated +{ + [super viewWillAppear:animated]; +} + +- (void)viewDidAppear:(BOOL)animated +{ + [super viewDidAppear:animated]; +} + +- (void)viewWillDisappear:(BOOL)animated +{ + [super viewWillDisappear:animated]; +} + +- (void)viewDidDisappear:(BOOL)animated +{ + [super viewDidDisappear:animated]; +} + +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation +{ + // Return YES for supported orientations + return YES; +} + +@end diff --git a/TrashBox/en.lproj/InfoPlist.strings b/TrashBox/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/TrashBox/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/TrashBox/en.lproj/ViewController.xib b/TrashBox/en.lproj/ViewController.xib new file mode 100644 index 0000000..cd02abe --- /dev/null +++ b/TrashBox/en.lproj/ViewController.xib @@ -0,0 +1,120 @@ + + + + 1280 + 11C25 + 1919 + 1138.11 + 566.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 916 + + + IBProxyObject + IBUIView + + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + PluginDependencyRecalculationVersion + + + + + IBFilesOwner + IBIPadFramework + + + IBFirstResponder + IBIPadFramework + + + + 274 + {{0, 20}, {768, 1004}} + + + + 3 + MQA + + 2 + + + + 2 + + IBIPadFramework + + + + + + + view + + + + 3 + + + + + + 0 + + + + + + -1 + + + File's Owner + + + -2 + + + + + 2 + + + + + + + ViewController + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + UIResponder + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + + + + 3 + + + + + ViewController + UIViewController + + IBProjectSource + ./Classes/ViewController.h + + + + + 0 + IBIPadFramework + YES + 3 + 916 + + diff --git a/TrashBox/main.m b/TrashBox/main.m new file mode 100644 index 0000000..6c5a415 --- /dev/null +++ b/TrashBox/main.m @@ -0,0 +1,18 @@ +// +// main.m +// TrashBox +// +// Created by Ian Donovan on 4/17/12. +// Copyright (c) 2012 Tufts University. All rights reserved. +// + +#import + +#import "AppDelegate.h" + +int main(int argc, char *argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} diff --git a/TrashBoxTests/TrashBoxTests-Info.plist b/TrashBoxTests/TrashBoxTests-Info.plist new file mode 100644 index 0000000..c46c255 --- /dev/null +++ b/TrashBoxTests/TrashBoxTests-Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + Tufts-University.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/TrashBoxTests/TrashBoxTests.h b/TrashBoxTests/TrashBoxTests.h new file mode 100644 index 0000000..04b11c0 --- /dev/null +++ b/TrashBoxTests/TrashBoxTests.h @@ -0,0 +1,13 @@ +// +// TrashBoxTests.h +// TrashBoxTests +// +// Created by Ian Donovan on 4/17/12. +// Copyright (c) 2012 Tufts University. All rights reserved. +// + +#import + +@interface TrashBoxTests : SenTestCase + +@end diff --git a/TrashBoxTests/TrashBoxTests.m b/TrashBoxTests/TrashBoxTests.m new file mode 100644 index 0000000..eb837a7 --- /dev/null +++ b/TrashBoxTests/TrashBoxTests.m @@ -0,0 +1,32 @@ +// +// TrashBoxTests.m +// TrashBoxTests +// +// Created by Ian Donovan on 4/17/12. +// Copyright (c) 2012 Tufts University. All rights reserved. +// + +#import "TrashBoxTests.h" + +@implementation TrashBoxTests + +- (void)setUp +{ + [super setUp]; + + // Set-up code here. +} + +- (void)tearDown +{ + // Tear-down code here. + + [super tearDown]; +} + +- (void)testExample +{ + STFail(@"Unit tests are not implemented yet in TrashBoxTests"); +} + +@end diff --git a/TrashBoxTests/en.lproj/InfoPlist.strings b/TrashBoxTests/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/TrashBoxTests/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ +