├── Llama Trot.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── zmp1123.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── zmp1123.xcuserdatad │ └── xcschemes │ ├── Llama Trot.xcscheme │ └── xcschememanagement.plist ├── Llama Trot ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon76x76@2x~ipad.png │ │ ├── AppIcon76x76~ipad.png │ │ └── Contents.json ├── Info.plist └── ViewController.swift ├── Llama TrotTests ├── Info.plist └── Llama_TrotTests.swift ├── betaRibbon.png ├── debugRibbon.png ├── resizedBetaRibbon.png └── resizedRibbon.png /Llama Trot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | E7992E511B85762B00227991 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7992E501B85762B00227991 /* AppDelegate.swift */; }; 11 | E7992E531B85762B00227991 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7992E521B85762B00227991 /* ViewController.swift */; }; 12 | E7992E561B85762B00227991 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E7992E541B85762B00227991 /* Main.storyboard */; }; 13 | E7992E581B85762B00227991 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E7992E571B85762B00227991 /* Images.xcassets */; }; 14 | E7992E5B1B85762B00227991 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = E7992E591B85762B00227991 /* LaunchScreen.xib */; }; 15 | E7992E671B85762B00227991 /* Llama_TrotTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7992E661B85762B00227991 /* Llama_TrotTests.swift */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXContainerItemProxy section */ 19 | E7992E611B85762B00227991 /* PBXContainerItemProxy */ = { 20 | isa = PBXContainerItemProxy; 21 | containerPortal = E7992E431B85762B00227991 /* Project object */; 22 | proxyType = 1; 23 | remoteGlobalIDString = E7992E4A1B85762B00227991; 24 | remoteInfo = "Llama Trot"; 25 | }; 26 | /* End PBXContainerItemProxy section */ 27 | 28 | /* Begin PBXFileReference section */ 29 | E7992E4B1B85762B00227991 /* Llama Trot.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Llama Trot.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 30 | E7992E4F1B85762B00227991 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 31 | E7992E501B85762B00227991 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 32 | E7992E521B85762B00227991 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 33 | E7992E551B85762B00227991 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 34 | E7992E571B85762B00227991 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 35 | E7992E5A1B85762B00227991 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 36 | E7992E601B85762B00227991 /* Llama TrotTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Llama TrotTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | E7992E651B85762B00227991 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 38 | E7992E661B85762B00227991 /* Llama_TrotTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Llama_TrotTests.swift; sourceTree = ""; }; 39 | /* End PBXFileReference section */ 40 | 41 | /* Begin PBXFrameworksBuildPhase section */ 42 | E7992E481B85762B00227991 /* Frameworks */ = { 43 | isa = PBXFrameworksBuildPhase; 44 | buildActionMask = 2147483647; 45 | files = ( 46 | ); 47 | runOnlyForDeploymentPostprocessing = 0; 48 | }; 49 | E7992E5D1B85762B00227991 /* Frameworks */ = { 50 | isa = PBXFrameworksBuildPhase; 51 | buildActionMask = 2147483647; 52 | files = ( 53 | ); 54 | runOnlyForDeploymentPostprocessing = 0; 55 | }; 56 | /* End PBXFrameworksBuildPhase section */ 57 | 58 | /* Begin PBXGroup section */ 59 | E7992E421B85762B00227991 = { 60 | isa = PBXGroup; 61 | children = ( 62 | E7992E4D1B85762B00227991 /* Llama Trot */, 63 | E7992E631B85762B00227991 /* Llama TrotTests */, 64 | E7992E4C1B85762B00227991 /* Products */, 65 | ); 66 | sourceTree = ""; 67 | }; 68 | E7992E4C1B85762B00227991 /* Products */ = { 69 | isa = PBXGroup; 70 | children = ( 71 | E7992E4B1B85762B00227991 /* Llama Trot.app */, 72 | E7992E601B85762B00227991 /* Llama TrotTests.xctest */, 73 | ); 74 | name = Products; 75 | sourceTree = ""; 76 | }; 77 | E7992E4D1B85762B00227991 /* Llama Trot */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | E7992E501B85762B00227991 /* AppDelegate.swift */, 81 | E7992E521B85762B00227991 /* ViewController.swift */, 82 | E7992E541B85762B00227991 /* Main.storyboard */, 83 | E7992E571B85762B00227991 /* Images.xcassets */, 84 | E7992E591B85762B00227991 /* LaunchScreen.xib */, 85 | E7992E4E1B85762B00227991 /* Supporting Files */, 86 | ); 87 | path = "Llama Trot"; 88 | sourceTree = ""; 89 | }; 90 | E7992E4E1B85762B00227991 /* Supporting Files */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | E7992E4F1B85762B00227991 /* Info.plist */, 94 | ); 95 | name = "Supporting Files"; 96 | sourceTree = ""; 97 | }; 98 | E7992E631B85762B00227991 /* Llama TrotTests */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | E7992E661B85762B00227991 /* Llama_TrotTests.swift */, 102 | E7992E641B85762B00227991 /* Supporting Files */, 103 | ); 104 | path = "Llama TrotTests"; 105 | sourceTree = ""; 106 | }; 107 | E7992E641B85762B00227991 /* Supporting Files */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | E7992E651B85762B00227991 /* Info.plist */, 111 | ); 112 | name = "Supporting Files"; 113 | sourceTree = ""; 114 | }; 115 | /* End PBXGroup section */ 116 | 117 | /* Begin PBXNativeTarget section */ 118 | E7992E4A1B85762B00227991 /* Llama Trot */ = { 119 | isa = PBXNativeTarget; 120 | buildConfigurationList = E7992E6A1B85762B00227991 /* Build configuration list for PBXNativeTarget "Llama Trot" */; 121 | buildPhases = ( 122 | E7992E471B85762B00227991 /* Sources */, 123 | E7992E481B85762B00227991 /* Frameworks */, 124 | E7992E491B85762B00227991 /* Resources */, 125 | E7992E701B8576A600227991 /* ShellScript */, 126 | ); 127 | buildRules = ( 128 | ); 129 | dependencies = ( 130 | ); 131 | name = "Llama Trot"; 132 | productName = "Llama Trot"; 133 | productReference = E7992E4B1B85762B00227991 /* Llama Trot.app */; 134 | productType = "com.apple.product-type.application"; 135 | }; 136 | E7992E5F1B85762B00227991 /* Llama TrotTests */ = { 137 | isa = PBXNativeTarget; 138 | buildConfigurationList = E7992E6D1B85762B00227991 /* Build configuration list for PBXNativeTarget "Llama TrotTests" */; 139 | buildPhases = ( 140 | E7992E5C1B85762B00227991 /* Sources */, 141 | E7992E5D1B85762B00227991 /* Frameworks */, 142 | E7992E5E1B85762B00227991 /* Resources */, 143 | ); 144 | buildRules = ( 145 | ); 146 | dependencies = ( 147 | E7992E621B85762B00227991 /* PBXTargetDependency */, 148 | ); 149 | name = "Llama TrotTests"; 150 | productName = "Llama TrotTests"; 151 | productReference = E7992E601B85762B00227991 /* Llama TrotTests.xctest */; 152 | productType = "com.apple.product-type.bundle.unit-test"; 153 | }; 154 | /* End PBXNativeTarget section */ 155 | 156 | /* Begin PBXProject section */ 157 | E7992E431B85762B00227991 /* Project object */ = { 158 | isa = PBXProject; 159 | attributes = { 160 | LastUpgradeCheck = 0640; 161 | ORGANIZATIONNAME = zmp1123; 162 | TargetAttributes = { 163 | E7992E4A1B85762B00227991 = { 164 | CreatedOnToolsVersion = 6.4; 165 | }; 166 | E7992E5F1B85762B00227991 = { 167 | CreatedOnToolsVersion = 6.4; 168 | TestTargetID = E7992E4A1B85762B00227991; 169 | }; 170 | }; 171 | }; 172 | buildConfigurationList = E7992E461B85762B00227991 /* Build configuration list for PBXProject "Llama Trot" */; 173 | compatibilityVersion = "Xcode 3.2"; 174 | developmentRegion = English; 175 | hasScannedForEncodings = 0; 176 | knownRegions = ( 177 | en, 178 | Base, 179 | ); 180 | mainGroup = E7992E421B85762B00227991; 181 | productRefGroup = E7992E4C1B85762B00227991 /* Products */; 182 | projectDirPath = ""; 183 | projectRoot = ""; 184 | targets = ( 185 | E7992E4A1B85762B00227991 /* Llama Trot */, 186 | E7992E5F1B85762B00227991 /* Llama TrotTests */, 187 | ); 188 | }; 189 | /* End PBXProject section */ 190 | 191 | /* Begin PBXResourcesBuildPhase section */ 192 | E7992E491B85762B00227991 /* Resources */ = { 193 | isa = PBXResourcesBuildPhase; 194 | buildActionMask = 2147483647; 195 | files = ( 196 | E7992E561B85762B00227991 /* Main.storyboard in Resources */, 197 | E7992E5B1B85762B00227991 /* LaunchScreen.xib in Resources */, 198 | E7992E581B85762B00227991 /* Images.xcassets in Resources */, 199 | ); 200 | runOnlyForDeploymentPostprocessing = 0; 201 | }; 202 | E7992E5E1B85762B00227991 /* Resources */ = { 203 | isa = PBXResourcesBuildPhase; 204 | buildActionMask = 2147483647; 205 | files = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | }; 209 | /* End PBXResourcesBuildPhase section */ 210 | 211 | /* Begin PBXShellScriptBuildPhase section */ 212 | E7992E701B8576A600227991 /* ShellScript */ = { 213 | isa = PBXShellScriptBuildPhase; 214 | buildActionMask = 2147483647; 215 | files = ( 216 | ); 217 | inputPaths = ( 218 | ); 219 | outputPaths = ( 220 | ); 221 | runOnlyForDeploymentPostprocessing = 0; 222 | shellPath = /bin/sh; 223 | shellScript = "IFS=$'\\n'\nbuildNumber=$(/usr/libexec/PlistBuddy -c \"Print CFBundleVersion\" \"${PROJECT_DIR}/${INFOPLIST_FILE}\")\nversionNumber=$(/usr/libexec/PlistBuddy -c \"Print CFBundleShortVersionString\" \"${PROJECT_DIR}/${INFOPLIST_FILE}\")\nPATH=${PATH}:/usr/local/bin\n\nfunction generateIcon () {\n BASE_IMAGE_NAME=$1\n \n TARGET_PATH=\"${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/${BASE_IMAGE_NAME}\"\n echo $TARGET_PATH\n echo $SRCROOT\n echo $(find ${SRCROOT} -name \"AppIcon60x60@2x.png\")\n BASE_IMAGE_PATH=$(find ${SRCROOT} -name ${BASE_IMAGE_NAME})\n WIDTH=$(identify -format %w ${BASE_IMAGE_PATH})\n FONT_SIZE=$(echo \"$WIDTH * .15\" | bc -l)\n echo \"font size $FONT_SIZE\"\n \n if [ \"${CONFIGURATION}\" == \"Debug\" ]; then\n convert debugRibbon.png -resize ${WIDTH}x${WIDTH} resizedRibbon.png\n convert ${BASE_IMAGE_PATH} -fill white -font Times-Bold -pointsize ${FONT_SIZE} -gravity south -annotate 0 \"$buildNumber\" - | composite resizedRibbon.png - ${TARGET_PATH}\n fi\n \n if [ \"${CONFIGURATION}\" == \"Beta\" ]; then\n convert betaRibbon.png -resize ${WIDTH}x${WIDTH} resizedRibbon.png\n convert ${BASE_IMAGE_PATH} -fill white -font Times-Boldr -pointsize ${FONT_SIZE} -gravity south -annotate 0 \"$buildNumber\" - | composite resizedRibbon.png - ${TARGET_PATH}\n fi\n}\n\ngenerateIcon \"AppIcon60x60@2x.png\"\ngenerateIcon \"AppIcon60x60@3x.png\"\ngenerateIcon \"AppIcon76x76~ipad.png\"\ngenerateIcon \"AppIcon76x76@2x~ipad.png\""; 224 | }; 225 | /* End PBXShellScriptBuildPhase section */ 226 | 227 | /* Begin PBXSourcesBuildPhase section */ 228 | E7992E471B85762B00227991 /* Sources */ = { 229 | isa = PBXSourcesBuildPhase; 230 | buildActionMask = 2147483647; 231 | files = ( 232 | E7992E531B85762B00227991 /* ViewController.swift in Sources */, 233 | E7992E511B85762B00227991 /* AppDelegate.swift in Sources */, 234 | ); 235 | runOnlyForDeploymentPostprocessing = 0; 236 | }; 237 | E7992E5C1B85762B00227991 /* Sources */ = { 238 | isa = PBXSourcesBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | E7992E671B85762B00227991 /* Llama_TrotTests.swift in Sources */, 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | }; 245 | /* End PBXSourcesBuildPhase section */ 246 | 247 | /* Begin PBXTargetDependency section */ 248 | E7992E621B85762B00227991 /* PBXTargetDependency */ = { 249 | isa = PBXTargetDependency; 250 | target = E7992E4A1B85762B00227991 /* Llama Trot */; 251 | targetProxy = E7992E611B85762B00227991 /* PBXContainerItemProxy */; 252 | }; 253 | /* End PBXTargetDependency section */ 254 | 255 | /* Begin PBXVariantGroup section */ 256 | E7992E541B85762B00227991 /* Main.storyboard */ = { 257 | isa = PBXVariantGroup; 258 | children = ( 259 | E7992E551B85762B00227991 /* Base */, 260 | ); 261 | name = Main.storyboard; 262 | sourceTree = ""; 263 | }; 264 | E7992E591B85762B00227991 /* LaunchScreen.xib */ = { 265 | isa = PBXVariantGroup; 266 | children = ( 267 | E7992E5A1B85762B00227991 /* Base */, 268 | ); 269 | name = LaunchScreen.xib; 270 | sourceTree = ""; 271 | }; 272 | /* End PBXVariantGroup section */ 273 | 274 | /* Begin XCBuildConfiguration section */ 275 | E7992E681B85762B00227991 /* Debug */ = { 276 | isa = XCBuildConfiguration; 277 | buildSettings = { 278 | ALWAYS_SEARCH_USER_PATHS = NO; 279 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 280 | CLANG_CXX_LIBRARY = "libc++"; 281 | CLANG_ENABLE_MODULES = YES; 282 | CLANG_ENABLE_OBJC_ARC = YES; 283 | CLANG_WARN_BOOL_CONVERSION = YES; 284 | CLANG_WARN_CONSTANT_CONVERSION = YES; 285 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 286 | CLANG_WARN_EMPTY_BODY = YES; 287 | CLANG_WARN_ENUM_CONVERSION = YES; 288 | CLANG_WARN_INT_CONVERSION = YES; 289 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 290 | CLANG_WARN_UNREACHABLE_CODE = YES; 291 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 292 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 293 | COPY_PHASE_STRIP = NO; 294 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 295 | ENABLE_STRICT_OBJC_MSGSEND = YES; 296 | GCC_C_LANGUAGE_STANDARD = gnu99; 297 | GCC_DYNAMIC_NO_PIC = NO; 298 | GCC_NO_COMMON_BLOCKS = YES; 299 | GCC_OPTIMIZATION_LEVEL = 0; 300 | GCC_PREPROCESSOR_DEFINITIONS = ( 301 | "DEBUG=1", 302 | "$(inherited)", 303 | ); 304 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 305 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 306 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 307 | GCC_WARN_UNDECLARED_SELECTOR = YES; 308 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 309 | GCC_WARN_UNUSED_FUNCTION = YES; 310 | GCC_WARN_UNUSED_VARIABLE = YES; 311 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 312 | MTL_ENABLE_DEBUG_INFO = YES; 313 | ONLY_ACTIVE_ARCH = YES; 314 | SDKROOT = iphoneos; 315 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 316 | TARGETED_DEVICE_FAMILY = "1,2"; 317 | }; 318 | name = Debug; 319 | }; 320 | E7992E691B85762B00227991 /* Release */ = { 321 | isa = XCBuildConfiguration; 322 | buildSettings = { 323 | ALWAYS_SEARCH_USER_PATHS = NO; 324 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 325 | CLANG_CXX_LIBRARY = "libc++"; 326 | CLANG_ENABLE_MODULES = YES; 327 | CLANG_ENABLE_OBJC_ARC = YES; 328 | CLANG_WARN_BOOL_CONVERSION = YES; 329 | CLANG_WARN_CONSTANT_CONVERSION = YES; 330 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 331 | CLANG_WARN_EMPTY_BODY = YES; 332 | CLANG_WARN_ENUM_CONVERSION = YES; 333 | CLANG_WARN_INT_CONVERSION = YES; 334 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 335 | CLANG_WARN_UNREACHABLE_CODE = YES; 336 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 337 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 338 | COPY_PHASE_STRIP = NO; 339 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 340 | ENABLE_NS_ASSERTIONS = NO; 341 | ENABLE_STRICT_OBJC_MSGSEND = YES; 342 | GCC_C_LANGUAGE_STANDARD = gnu99; 343 | GCC_NO_COMMON_BLOCKS = YES; 344 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 345 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 346 | GCC_WARN_UNDECLARED_SELECTOR = YES; 347 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 348 | GCC_WARN_UNUSED_FUNCTION = YES; 349 | GCC_WARN_UNUSED_VARIABLE = YES; 350 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 351 | MTL_ENABLE_DEBUG_INFO = NO; 352 | SDKROOT = iphoneos; 353 | TARGETED_DEVICE_FAMILY = "1,2"; 354 | VALIDATE_PRODUCT = YES; 355 | }; 356 | name = Release; 357 | }; 358 | E7992E6B1B85762B00227991 /* Debug */ = { 359 | isa = XCBuildConfiguration; 360 | buildSettings = { 361 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 362 | INFOPLIST_FILE = "Llama Trot/Info.plist"; 363 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 364 | PRODUCT_NAME = "$(TARGET_NAME)"; 365 | }; 366 | name = Debug; 367 | }; 368 | E7992E6C1B85762B00227991 /* Release */ = { 369 | isa = XCBuildConfiguration; 370 | buildSettings = { 371 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 372 | INFOPLIST_FILE = "Llama Trot/Info.plist"; 373 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 374 | PRODUCT_NAME = "$(TARGET_NAME)"; 375 | }; 376 | name = Release; 377 | }; 378 | E7992E6E1B85762B00227991 /* Debug */ = { 379 | isa = XCBuildConfiguration; 380 | buildSettings = { 381 | BUNDLE_LOADER = "$(TEST_HOST)"; 382 | FRAMEWORK_SEARCH_PATHS = ( 383 | "$(SDKROOT)/Developer/Library/Frameworks", 384 | "$(inherited)", 385 | ); 386 | GCC_PREPROCESSOR_DEFINITIONS = ( 387 | "DEBUG=1", 388 | "$(inherited)", 389 | ); 390 | INFOPLIST_FILE = "Llama TrotTests/Info.plist"; 391 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 392 | PRODUCT_NAME = "$(TARGET_NAME)"; 393 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Llama Trot.app/Llama Trot"; 394 | }; 395 | name = Debug; 396 | }; 397 | E7992E6F1B85762B00227991 /* Release */ = { 398 | isa = XCBuildConfiguration; 399 | buildSettings = { 400 | BUNDLE_LOADER = "$(TEST_HOST)"; 401 | FRAMEWORK_SEARCH_PATHS = ( 402 | "$(SDKROOT)/Developer/Library/Frameworks", 403 | "$(inherited)", 404 | ); 405 | INFOPLIST_FILE = "Llama TrotTests/Info.plist"; 406 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 407 | PRODUCT_NAME = "$(TARGET_NAME)"; 408 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Llama Trot.app/Llama Trot"; 409 | }; 410 | name = Release; 411 | }; 412 | E7992E711B857CF800227991 /* Beta */ = { 413 | isa = XCBuildConfiguration; 414 | buildSettings = { 415 | ALWAYS_SEARCH_USER_PATHS = NO; 416 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 417 | CLANG_CXX_LIBRARY = "libc++"; 418 | CLANG_ENABLE_MODULES = YES; 419 | CLANG_ENABLE_OBJC_ARC = YES; 420 | CLANG_WARN_BOOL_CONVERSION = YES; 421 | CLANG_WARN_CONSTANT_CONVERSION = YES; 422 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 423 | CLANG_WARN_EMPTY_BODY = YES; 424 | CLANG_WARN_ENUM_CONVERSION = YES; 425 | CLANG_WARN_INT_CONVERSION = YES; 426 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 427 | CLANG_WARN_UNREACHABLE_CODE = YES; 428 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 429 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 430 | COPY_PHASE_STRIP = NO; 431 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 432 | ENABLE_NS_ASSERTIONS = NO; 433 | ENABLE_STRICT_OBJC_MSGSEND = YES; 434 | GCC_C_LANGUAGE_STANDARD = gnu99; 435 | GCC_NO_COMMON_BLOCKS = YES; 436 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 437 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 438 | GCC_WARN_UNDECLARED_SELECTOR = YES; 439 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 440 | GCC_WARN_UNUSED_FUNCTION = YES; 441 | GCC_WARN_UNUSED_VARIABLE = YES; 442 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 443 | MTL_ENABLE_DEBUG_INFO = NO; 444 | SDKROOT = iphoneos; 445 | TARGETED_DEVICE_FAMILY = "1,2"; 446 | VALIDATE_PRODUCT = YES; 447 | }; 448 | name = Beta; 449 | }; 450 | E7992E721B857CF800227991 /* Beta */ = { 451 | isa = XCBuildConfiguration; 452 | buildSettings = { 453 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 454 | INFOPLIST_FILE = "Llama Trot/Info.plist"; 455 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 456 | PRODUCT_NAME = "$(TARGET_NAME)"; 457 | }; 458 | name = Beta; 459 | }; 460 | E7992E731B857CF800227991 /* Beta */ = { 461 | isa = XCBuildConfiguration; 462 | buildSettings = { 463 | BUNDLE_LOADER = "$(TEST_HOST)"; 464 | FRAMEWORK_SEARCH_PATHS = ( 465 | "$(SDKROOT)/Developer/Library/Frameworks", 466 | "$(inherited)", 467 | ); 468 | INFOPLIST_FILE = "Llama TrotTests/Info.plist"; 469 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 470 | PRODUCT_NAME = "$(TARGET_NAME)"; 471 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Llama Trot.app/Llama Trot"; 472 | }; 473 | name = Beta; 474 | }; 475 | /* End XCBuildConfiguration section */ 476 | 477 | /* Begin XCConfigurationList section */ 478 | E7992E461B85762B00227991 /* Build configuration list for PBXProject "Llama Trot" */ = { 479 | isa = XCConfigurationList; 480 | buildConfigurations = ( 481 | E7992E681B85762B00227991 /* Debug */, 482 | E7992E691B85762B00227991 /* Release */, 483 | E7992E711B857CF800227991 /* Beta */, 484 | ); 485 | defaultConfigurationIsVisible = 0; 486 | defaultConfigurationName = Release; 487 | }; 488 | E7992E6A1B85762B00227991 /* Build configuration list for PBXNativeTarget "Llama Trot" */ = { 489 | isa = XCConfigurationList; 490 | buildConfigurations = ( 491 | E7992E6B1B85762B00227991 /* Debug */, 492 | E7992E6C1B85762B00227991 /* Release */, 493 | E7992E721B857CF800227991 /* Beta */, 494 | ); 495 | defaultConfigurationIsVisible = 0; 496 | }; 497 | E7992E6D1B85762B00227991 /* Build configuration list for PBXNativeTarget "Llama TrotTests" */ = { 498 | isa = XCConfigurationList; 499 | buildConfigurations = ( 500 | E7992E6E1B85762B00227991 /* Debug */, 501 | E7992E6F1B85762B00227991 /* Release */, 502 | E7992E731B857CF800227991 /* Beta */, 503 | ); 504 | defaultConfigurationIsVisible = 0; 505 | }; 506 | /* End XCConfigurationList section */ 507 | }; 508 | rootObject = E7992E431B85762B00227991 /* Project object */; 509 | } 510 | -------------------------------------------------------------------------------- /Llama Trot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Llama Trot.xcodeproj/project.xcworkspace/xcuserdata/zmp1123.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/Llama Trot.xcodeproj/project.xcworkspace/xcuserdata/zmp1123.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Llama Trot.xcodeproj/xcuserdata/zmp1123.xcuserdatad/xcschemes/Llama Trot.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 77 | 83 | 84 | 85 | 86 | 87 | 88 | 94 | 96 | 102 | 103 | 104 | 105 | 107 | 108 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /Llama Trot.xcodeproj/xcuserdata/zmp1123.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Llama Trot.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | E7992E4A1B85762B00227991 16 | 17 | primary 18 | 19 | 20 | E7992E5F1B85762B00227991 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Llama Trot/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Llama Trot 4 | // 5 | // Created by zmp1123 on 8/20/15. 6 | // Copyright (c) 2015 zmp1123. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(application: UIApplication) { 23 | // 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. 24 | // 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. 25 | } 26 | 27 | func applicationDidEnterBackground(application: UIApplication) { 28 | // 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. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(application: UIApplication) { 33 | // 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. 34 | } 35 | 36 | func applicationDidBecomeActive(application: UIApplication) { 37 | // 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. 38 | } 39 | 40 | func applicationWillTerminate(application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Llama Trot/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Llama Trot/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon76x76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon76x76@2x~ipad.png -------------------------------------------------------------------------------- /Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon76x76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/Llama Trot/Images.xcassets/AppIcon.appiconset/AppIcon76x76~ipad.png -------------------------------------------------------------------------------- /Llama Trot/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "size" : "60x60", 25 | "idiom" : "iphone", 26 | "filename" : "AppIcon60x60@2x.png", 27 | "scale" : "2x" 28 | }, 29 | { 30 | "size" : "60x60", 31 | "idiom" : "iphone", 32 | "filename" : "AppIcon60x60@3x.png", 33 | "scale" : "3x" 34 | }, 35 | { 36 | "idiom" : "ipad", 37 | "size" : "29x29", 38 | "scale" : "1x" 39 | }, 40 | { 41 | "idiom" : "ipad", 42 | "size" : "29x29", 43 | "scale" : "2x" 44 | }, 45 | { 46 | "idiom" : "ipad", 47 | "size" : "40x40", 48 | "scale" : "1x" 49 | }, 50 | { 51 | "idiom" : "ipad", 52 | "size" : "40x40", 53 | "scale" : "2x" 54 | }, 55 | { 56 | "size" : "76x76", 57 | "idiom" : "ipad", 58 | "filename" : "AppIcon76x76~ipad.png", 59 | "scale" : "1x" 60 | }, 61 | { 62 | "size" : "76x76", 63 | "idiom" : "ipad", 64 | "filename" : "AppIcon76x76@2x~ipad.png", 65 | "scale" : "2x" 66 | } 67 | ], 68 | "info" : { 69 | "version" : 1, 70 | "author" : "xcode" 71 | } 72 | } -------------------------------------------------------------------------------- /Llama Trot/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | zmp1123.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Llama Trot/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Llama Trot 4 | // 5 | // Created by zmp1123 on 8/20/15. 6 | // Copyright (c) 2015 zmp1123. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /Llama TrotTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | zmp1123.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Llama TrotTests/Llama_TrotTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Llama_TrotTests.swift 3 | // Llama TrotTests 4 | // 5 | // Created by zmp1123 on 8/20/15. 6 | // Copyright (c) 2015 zmp1123. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import XCTest 11 | 12 | class Llama_TrotTests: XCTestCase { 13 | 14 | override func setUp() { 15 | super.setUp() 16 | // Put setup code here. This method is called before the invocation of each test method in the class. 17 | } 18 | 19 | override func tearDown() { 20 | // Put teardown code here. This method is called after the invocation of each test method in the class. 21 | super.tearDown() 22 | } 23 | 24 | func testExample() { 25 | // This is an example of a functional test case. 26 | XCTAssert(true, "Pass") 27 | } 28 | 29 | func testPerformanceExample() { 30 | // This is an example of a performance test case. 31 | self.measureBlock() { 32 | // Put the code you want to measure the time of here. 33 | } 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /betaRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/betaRibbon.png -------------------------------------------------------------------------------- /debugRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/debugRibbon.png -------------------------------------------------------------------------------- /resizedBetaRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/resizedBetaRibbon.png -------------------------------------------------------------------------------- /resizedRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zmp1123/ChangeAppIcon/8ae4a8c9b6708a348c1fec77ab9b7d0aa759d153/resizedRibbon.png --------------------------------------------------------------------------------