├── GBA4IOS.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── magola.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── magola.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── GBA4IOS.xcscheme │ └── xcschememanagement.plist ├── GBA4IOS ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── GBA4IOS-Info.plist ├── GBA4IOS-Prefix.pch ├── en.lproj │ └── InfoPlist.strings └── main.m └── GBA4IOSTests ├── GBA4IOSTests-Info.plist ├── GBA4IOSTests.h ├── GBA4IOSTests.m └── en.lproj └── InfoPlist.strings /GBA4IOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | A38467F91768E74900BF3BCA /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A38467F81768E74900BF3BCA /* UIKit.framework */; }; 11 | A38467FB1768E74900BF3BCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A38467FA1768E74900BF3BCA /* Foundation.framework */; }; 12 | A38467FD1768E74900BF3BCA /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A38467FC1768E74900BF3BCA /* CoreGraphics.framework */; }; 13 | A38468031768E74900BF3BCA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A38468011768E74900BF3BCA /* InfoPlist.strings */; }; 14 | A38468051768E74900BF3BCA /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = A38468041768E74900BF3BCA /* main.m */; }; 15 | A38468091768E74900BF3BCA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A38468081768E74900BF3BCA /* AppDelegate.m */; }; 16 | A384680B1768E74900BF3BCA /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = A384680A1768E74900BF3BCA /* Default.png */; }; 17 | A384680D1768E74900BF3BCA /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A384680C1768E74900BF3BCA /* Default@2x.png */; }; 18 | A384680F1768E74900BF3BCA /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A384680E1768E74900BF3BCA /* Default-568h@2x.png */; }; 19 | A38468171768E74A00BF3BCA /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A38468161768E74A00BF3BCA /* SenTestingKit.framework */; }; 20 | A38468181768E74A00BF3BCA /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A38467F81768E74900BF3BCA /* UIKit.framework */; }; 21 | A38468191768E74A00BF3BCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A38467FA1768E74900BF3BCA /* Foundation.framework */; }; 22 | A38468211768E74A00BF3BCA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A384681F1768E74A00BF3BCA /* InfoPlist.strings */; }; 23 | A38468241768E74A00BF3BCA /* GBA4IOSTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A38468231768E74A00BF3BCA /* GBA4IOSTests.m */; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXContainerItemProxy section */ 27 | A384681A1768E74A00BF3BCA /* PBXContainerItemProxy */ = { 28 | isa = PBXContainerItemProxy; 29 | containerPortal = A38467ED1768E74800BF3BCA /* Project object */; 30 | proxyType = 1; 31 | remoteGlobalIDString = A38467F41768E74800BF3BCA; 32 | remoteInfo = GBA4IOS; 33 | }; 34 | /* End PBXContainerItemProxy section */ 35 | 36 | /* Begin PBXFileReference section */ 37 | A38467F51768E74900BF3BCA /* GBA4IOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GBA4IOS.app; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | A38467F81768E74900BF3BCA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 39 | A38467FA1768E74900BF3BCA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 40 | A38467FC1768E74900BF3BCA /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 41 | A38468001768E74900BF3BCA /* GBA4IOS-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "GBA4IOS-Info.plist"; sourceTree = ""; }; 42 | A38468021768E74900BF3BCA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 43 | A38468041768E74900BF3BCA /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 44 | A38468061768E74900BF3BCA /* GBA4IOS-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "GBA4IOS-Prefix.pch"; sourceTree = ""; }; 45 | A38468071768E74900BF3BCA /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 46 | A38468081768E74900BF3BCA /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 47 | A384680A1768E74900BF3BCA /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = ""; }; 48 | A384680C1768E74900BF3BCA /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = ""; }; 49 | A384680E1768E74900BF3BCA /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = ""; }; 50 | A38468151768E74A00BF3BCA /* GBA4IOSTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = GBA4IOSTests.octest; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | A38468161768E74A00BF3BCA /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; }; 52 | A384681E1768E74A00BF3BCA /* GBA4IOSTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "GBA4IOSTests-Info.plist"; sourceTree = ""; }; 53 | A38468201768E74A00BF3BCA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 54 | A38468221768E74A00BF3BCA /* GBA4IOSTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GBA4IOSTests.h; sourceTree = ""; }; 55 | A38468231768E74A00BF3BCA /* GBA4IOSTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GBA4IOSTests.m; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | A38467F21768E74800BF3BCA /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | A38467F91768E74900BF3BCA /* UIKit.framework in Frameworks */, 64 | A38467FB1768E74900BF3BCA /* Foundation.framework in Frameworks */, 65 | A38467FD1768E74900BF3BCA /* CoreGraphics.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | A38468111768E74A00BF3BCA /* Frameworks */ = { 70 | isa = PBXFrameworksBuildPhase; 71 | buildActionMask = 2147483647; 72 | files = ( 73 | A38468171768E74A00BF3BCA /* SenTestingKit.framework in Frameworks */, 74 | A38468181768E74A00BF3BCA /* UIKit.framework in Frameworks */, 75 | A38468191768E74A00BF3BCA /* Foundation.framework in Frameworks */, 76 | ); 77 | runOnlyForDeploymentPostprocessing = 0; 78 | }; 79 | /* End PBXFrameworksBuildPhase section */ 80 | 81 | /* Begin PBXGroup section */ 82 | A38467EC1768E74800BF3BCA = { 83 | isa = PBXGroup; 84 | children = ( 85 | A38467FE1768E74900BF3BCA /* GBA4IOS */, 86 | A384681C1768E74A00BF3BCA /* GBA4IOSTests */, 87 | A38467F71768E74900BF3BCA /* Frameworks */, 88 | A38467F61768E74900BF3BCA /* Products */, 89 | ); 90 | sourceTree = ""; 91 | }; 92 | A38467F61768E74900BF3BCA /* Products */ = { 93 | isa = PBXGroup; 94 | children = ( 95 | A38467F51768E74900BF3BCA /* GBA4IOS.app */, 96 | A38468151768E74A00BF3BCA /* GBA4IOSTests.octest */, 97 | ); 98 | name = Products; 99 | sourceTree = ""; 100 | }; 101 | A38467F71768E74900BF3BCA /* Frameworks */ = { 102 | isa = PBXGroup; 103 | children = ( 104 | A38467F81768E74900BF3BCA /* UIKit.framework */, 105 | A38467FA1768E74900BF3BCA /* Foundation.framework */, 106 | A38467FC1768E74900BF3BCA /* CoreGraphics.framework */, 107 | A38468161768E74A00BF3BCA /* SenTestingKit.framework */, 108 | ); 109 | name = Frameworks; 110 | sourceTree = ""; 111 | }; 112 | A38467FE1768E74900BF3BCA /* GBA4IOS */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | A38468071768E74900BF3BCA /* AppDelegate.h */, 116 | A38468081768E74900BF3BCA /* AppDelegate.m */, 117 | A38467FF1768E74900BF3BCA /* Supporting Files */, 118 | ); 119 | path = GBA4IOS; 120 | sourceTree = ""; 121 | }; 122 | A38467FF1768E74900BF3BCA /* Supporting Files */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | A38468001768E74900BF3BCA /* GBA4IOS-Info.plist */, 126 | A38468011768E74900BF3BCA /* InfoPlist.strings */, 127 | A38468041768E74900BF3BCA /* main.m */, 128 | A38468061768E74900BF3BCA /* GBA4IOS-Prefix.pch */, 129 | A384680A1768E74900BF3BCA /* Default.png */, 130 | A384680C1768E74900BF3BCA /* Default@2x.png */, 131 | A384680E1768E74900BF3BCA /* Default-568h@2x.png */, 132 | ); 133 | name = "Supporting Files"; 134 | sourceTree = ""; 135 | }; 136 | A384681C1768E74A00BF3BCA /* GBA4IOSTests */ = { 137 | isa = PBXGroup; 138 | children = ( 139 | A38468221768E74A00BF3BCA /* GBA4IOSTests.h */, 140 | A38468231768E74A00BF3BCA /* GBA4IOSTests.m */, 141 | A384681D1768E74A00BF3BCA /* Supporting Files */, 142 | ); 143 | path = GBA4IOSTests; 144 | sourceTree = ""; 145 | }; 146 | A384681D1768E74A00BF3BCA /* Supporting Files */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | A384681E1768E74A00BF3BCA /* GBA4IOSTests-Info.plist */, 150 | A384681F1768E74A00BF3BCA /* InfoPlist.strings */, 151 | ); 152 | name = "Supporting Files"; 153 | sourceTree = ""; 154 | }; 155 | /* End PBXGroup section */ 156 | 157 | /* Begin PBXNativeTarget section */ 158 | A38467F41768E74800BF3BCA /* GBA4IOS */ = { 159 | isa = PBXNativeTarget; 160 | buildConfigurationList = A38468271768E74A00BF3BCA /* Build configuration list for PBXNativeTarget "GBA4IOS" */; 161 | buildPhases = ( 162 | A38467F11768E74800BF3BCA /* Sources */, 163 | A38467F21768E74800BF3BCA /* Frameworks */, 164 | A38467F31768E74800BF3BCA /* Resources */, 165 | ); 166 | buildRules = ( 167 | ); 168 | dependencies = ( 169 | ); 170 | name = GBA4IOS; 171 | productName = GBA4IOS; 172 | productReference = A38467F51768E74900BF3BCA /* GBA4IOS.app */; 173 | productType = "com.apple.product-type.application"; 174 | }; 175 | A38468141768E74A00BF3BCA /* GBA4IOSTests */ = { 176 | isa = PBXNativeTarget; 177 | buildConfigurationList = A384682A1768E74A00BF3BCA /* Build configuration list for PBXNativeTarget "GBA4IOSTests" */; 178 | buildPhases = ( 179 | A38468101768E74A00BF3BCA /* Sources */, 180 | A38468111768E74A00BF3BCA /* Frameworks */, 181 | A38468121768E74A00BF3BCA /* Resources */, 182 | A38468131768E74A00BF3BCA /* ShellScript */, 183 | ); 184 | buildRules = ( 185 | ); 186 | dependencies = ( 187 | A384681B1768E74A00BF3BCA /* PBXTargetDependency */, 188 | ); 189 | name = GBA4IOSTests; 190 | productName = GBA4IOSTests; 191 | productReference = A38468151768E74A00BF3BCA /* GBA4IOSTests.octest */; 192 | productType = "com.apple.product-type.bundle"; 193 | }; 194 | /* End PBXNativeTarget section */ 195 | 196 | /* Begin PBXProject section */ 197 | A38467ED1768E74800BF3BCA /* Project object */ = { 198 | isa = PBXProject; 199 | attributes = { 200 | LastUpgradeCheck = 0460; 201 | ORGANIZATIONNAME = "Manuelita Ramos"; 202 | }; 203 | buildConfigurationList = A38467F01768E74800BF3BCA /* Build configuration list for PBXProject "GBA4IOS" */; 204 | compatibilityVersion = "Xcode 3.2"; 205 | developmentRegion = English; 206 | hasScannedForEncodings = 0; 207 | knownRegions = ( 208 | en, 209 | ); 210 | mainGroup = A38467EC1768E74800BF3BCA; 211 | productRefGroup = A38467F61768E74900BF3BCA /* Products */; 212 | projectDirPath = ""; 213 | projectRoot = ""; 214 | targets = ( 215 | A38467F41768E74800BF3BCA /* GBA4IOS */, 216 | A38468141768E74A00BF3BCA /* GBA4IOSTests */, 217 | ); 218 | }; 219 | /* End PBXProject section */ 220 | 221 | /* Begin PBXResourcesBuildPhase section */ 222 | A38467F31768E74800BF3BCA /* Resources */ = { 223 | isa = PBXResourcesBuildPhase; 224 | buildActionMask = 2147483647; 225 | files = ( 226 | A38468031768E74900BF3BCA /* InfoPlist.strings in Resources */, 227 | A384680B1768E74900BF3BCA /* Default.png in Resources */, 228 | A384680D1768E74900BF3BCA /* Default@2x.png in Resources */, 229 | A384680F1768E74900BF3BCA /* Default-568h@2x.png in Resources */, 230 | ); 231 | runOnlyForDeploymentPostprocessing = 0; 232 | }; 233 | A38468121768E74A00BF3BCA /* Resources */ = { 234 | isa = PBXResourcesBuildPhase; 235 | buildActionMask = 2147483647; 236 | files = ( 237 | A38468211768E74A00BF3BCA /* InfoPlist.strings in Resources */, 238 | ); 239 | runOnlyForDeploymentPostprocessing = 0; 240 | }; 241 | /* End PBXResourcesBuildPhase section */ 242 | 243 | /* Begin PBXShellScriptBuildPhase section */ 244 | A38468131768E74A00BF3BCA /* ShellScript */ = { 245 | isa = PBXShellScriptBuildPhase; 246 | buildActionMask = 2147483647; 247 | files = ( 248 | ); 249 | inputPaths = ( 250 | ); 251 | outputPaths = ( 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | shellPath = /bin/sh; 255 | shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"; 256 | }; 257 | /* End PBXShellScriptBuildPhase section */ 258 | 259 | /* Begin PBXSourcesBuildPhase section */ 260 | A38467F11768E74800BF3BCA /* Sources */ = { 261 | isa = PBXSourcesBuildPhase; 262 | buildActionMask = 2147483647; 263 | files = ( 264 | A38468051768E74900BF3BCA /* main.m in Sources */, 265 | A38468091768E74900BF3BCA /* AppDelegate.m in Sources */, 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | }; 269 | A38468101768E74A00BF3BCA /* Sources */ = { 270 | isa = PBXSourcesBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | A38468241768E74A00BF3BCA /* GBA4IOSTests.m in Sources */, 274 | ); 275 | runOnlyForDeploymentPostprocessing = 0; 276 | }; 277 | /* End PBXSourcesBuildPhase section */ 278 | 279 | /* Begin PBXTargetDependency section */ 280 | A384681B1768E74A00BF3BCA /* PBXTargetDependency */ = { 281 | isa = PBXTargetDependency; 282 | target = A38467F41768E74800BF3BCA /* GBA4IOS */; 283 | targetProxy = A384681A1768E74A00BF3BCA /* PBXContainerItemProxy */; 284 | }; 285 | /* End PBXTargetDependency section */ 286 | 287 | /* Begin PBXVariantGroup section */ 288 | A38468011768E74900BF3BCA /* InfoPlist.strings */ = { 289 | isa = PBXVariantGroup; 290 | children = ( 291 | A38468021768E74900BF3BCA /* en */, 292 | ); 293 | name = InfoPlist.strings; 294 | sourceTree = ""; 295 | }; 296 | A384681F1768E74A00BF3BCA /* InfoPlist.strings */ = { 297 | isa = PBXVariantGroup; 298 | children = ( 299 | A38468201768E74A00BF3BCA /* en */, 300 | ); 301 | name = InfoPlist.strings; 302 | sourceTree = ""; 303 | }; 304 | /* End PBXVariantGroup section */ 305 | 306 | /* Begin XCBuildConfiguration section */ 307 | A38468251768E74A00BF3BCA /* Debug */ = { 308 | isa = XCBuildConfiguration; 309 | buildSettings = { 310 | ALWAYS_SEARCH_USER_PATHS = NO; 311 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 312 | CLANG_CXX_LIBRARY = "libc++"; 313 | CLANG_ENABLE_OBJC_ARC = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_EMPTY_BODY = YES; 316 | CLANG_WARN_ENUM_CONVERSION = YES; 317 | CLANG_WARN_INT_CONVERSION = YES; 318 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 319 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 320 | COPY_PHASE_STRIP = NO; 321 | GCC_C_LANGUAGE_STANDARD = gnu99; 322 | GCC_DYNAMIC_NO_PIC = NO; 323 | GCC_OPTIMIZATION_LEVEL = 0; 324 | GCC_PREPROCESSOR_DEFINITIONS = ( 325 | "DEBUG=1", 326 | "$(inherited)", 327 | ); 328 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 329 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 330 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 331 | GCC_WARN_UNUSED_VARIABLE = YES; 332 | IPHONEOS_DEPLOYMENT_TARGET = 6.1; 333 | ONLY_ACTIVE_ARCH = YES; 334 | SDKROOT = iphoneos; 335 | }; 336 | name = Debug; 337 | }; 338 | A38468261768E74A00BF3BCA /* Release */ = { 339 | isa = XCBuildConfiguration; 340 | buildSettings = { 341 | ALWAYS_SEARCH_USER_PATHS = NO; 342 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 343 | CLANG_CXX_LIBRARY = "libc++"; 344 | CLANG_ENABLE_OBJC_ARC = YES; 345 | CLANG_WARN_CONSTANT_CONVERSION = YES; 346 | CLANG_WARN_EMPTY_BODY = YES; 347 | CLANG_WARN_ENUM_CONVERSION = YES; 348 | CLANG_WARN_INT_CONVERSION = YES; 349 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 350 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 351 | COPY_PHASE_STRIP = YES; 352 | GCC_C_LANGUAGE_STANDARD = gnu99; 353 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 354 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 355 | GCC_WARN_UNUSED_VARIABLE = YES; 356 | IPHONEOS_DEPLOYMENT_TARGET = 6.1; 357 | OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; 358 | SDKROOT = iphoneos; 359 | VALIDATE_PRODUCT = YES; 360 | }; 361 | name = Release; 362 | }; 363 | A38468281768E74A00BF3BCA /* Debug */ = { 364 | isa = XCBuildConfiguration; 365 | buildSettings = { 366 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 367 | GCC_PREFIX_HEADER = "GBA4IOS/GBA4IOS-Prefix.pch"; 368 | INFOPLIST_FILE = "GBA4IOS/GBA4IOS-Info.plist"; 369 | PRODUCT_NAME = "$(TARGET_NAME)"; 370 | TARGETED_DEVICE_FAMILY = 1; 371 | WRAPPER_EXTENSION = app; 372 | }; 373 | name = Debug; 374 | }; 375 | A38468291768E74A00BF3BCA /* Release */ = { 376 | isa = XCBuildConfiguration; 377 | buildSettings = { 378 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 379 | GCC_PREFIX_HEADER = "GBA4IOS/GBA4IOS-Prefix.pch"; 380 | INFOPLIST_FILE = "GBA4IOS/GBA4IOS-Info.plist"; 381 | PRODUCT_NAME = "$(TARGET_NAME)"; 382 | TARGETED_DEVICE_FAMILY = 1; 383 | WRAPPER_EXTENSION = app; 384 | }; 385 | name = Release; 386 | }; 387 | A384682B1768E74A00BF3BCA /* Debug */ = { 388 | isa = XCBuildConfiguration; 389 | buildSettings = { 390 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/GBA4IOS.app/GBA4IOS"; 391 | FRAMEWORK_SEARCH_PATHS = ( 392 | "\"$(SDKROOT)/Developer/Library/Frameworks\"", 393 | "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"", 394 | ); 395 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 396 | GCC_PREFIX_HEADER = "GBA4IOS/GBA4IOS-Prefix.pch"; 397 | INFOPLIST_FILE = "GBA4IOSTests/GBA4IOSTests-Info.plist"; 398 | PRODUCT_NAME = "$(TARGET_NAME)"; 399 | TEST_HOST = "$(BUNDLE_LOADER)"; 400 | WRAPPER_EXTENSION = octest; 401 | }; 402 | name = Debug; 403 | }; 404 | A384682C1768E74A00BF3BCA /* Release */ = { 405 | isa = XCBuildConfiguration; 406 | buildSettings = { 407 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/GBA4IOS.app/GBA4IOS"; 408 | FRAMEWORK_SEARCH_PATHS = ( 409 | "\"$(SDKROOT)/Developer/Library/Frameworks\"", 410 | "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"", 411 | ); 412 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 413 | GCC_PREFIX_HEADER = "GBA4IOS/GBA4IOS-Prefix.pch"; 414 | INFOPLIST_FILE = "GBA4IOSTests/GBA4IOSTests-Info.plist"; 415 | PRODUCT_NAME = "$(TARGET_NAME)"; 416 | TEST_HOST = "$(BUNDLE_LOADER)"; 417 | WRAPPER_EXTENSION = octest; 418 | }; 419 | name = Release; 420 | }; 421 | /* End XCBuildConfiguration section */ 422 | 423 | /* Begin XCConfigurationList section */ 424 | A38467F01768E74800BF3BCA /* Build configuration list for PBXProject "GBA4IOS" */ = { 425 | isa = XCConfigurationList; 426 | buildConfigurations = ( 427 | A38468251768E74A00BF3BCA /* Debug */, 428 | A38468261768E74A00BF3BCA /* Release */, 429 | ); 430 | defaultConfigurationIsVisible = 0; 431 | defaultConfigurationName = Release; 432 | }; 433 | A38468271768E74A00BF3BCA /* Build configuration list for PBXNativeTarget "GBA4IOS" */ = { 434 | isa = XCConfigurationList; 435 | buildConfigurations = ( 436 | A38468281768E74A00BF3BCA /* Debug */, 437 | A38468291768E74A00BF3BCA /* Release */, 438 | ); 439 | defaultConfigurationIsVisible = 0; 440 | }; 441 | A384682A1768E74A00BF3BCA /* Build configuration list for PBXNativeTarget "GBA4IOSTests" */ = { 442 | isa = XCConfigurationList; 443 | buildConfigurations = ( 444 | A384682B1768E74A00BF3BCA /* Debug */, 445 | A384682C1768E74A00BF3BCA /* Release */, 446 | ); 447 | defaultConfigurationIsVisible = 0; 448 | }; 449 | /* End XCConfigurationList section */ 450 | }; 451 | rootObject = A38467ED1768E74800BF3BCA /* Project object */; 452 | } 453 | -------------------------------------------------------------------------------- /GBA4IOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GBA4IOS.xcodeproj/project.xcworkspace/xcuserdata/magola.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manule1019/GBA4IOS/d3b4c2e87a06df0c0f94e6ed0cb560d32f254541/GBA4IOS.xcodeproj/project.xcworkspace/xcuserdata/magola.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GBA4IOS.xcodeproj/xcuserdata/magola.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /GBA4IOS.xcodeproj/xcuserdata/magola.xcuserdatad/xcschemes/GBA4IOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /GBA4IOS.xcodeproj/xcuserdata/magola.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | GBA4IOS.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | A38467F41768E74800BF3BCA 16 | 17 | primary 18 | 19 | 20 | A38468141768E74A00BF3BCA 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /GBA4IOS/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // GBA4IOS 4 | // 5 | // Created by Manuelita Ramos on 6/12/13. 6 | // Copyright (c) 2013 Manuelita Ramos. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /GBA4IOS/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // GBA4IOS 4 | // 5 | // Created by Manuelita Ramos on 6/12/13. 6 | // Copyright (c) 2013 Manuelita Ramos. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @implementation AppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 16 | // Override point for customization after application launch. 17 | self.window.backgroundColor = [UIColor whiteColor]; 18 | [self.window makeKeyAndVisible]; 19 | return YES; 20 | } 21 | 22 | - (void)applicationWillResignActive:(UIApplication *)application 23 | { 24 | // 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. 25 | // 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. 26 | } 27 | 28 | - (void)applicationDidEnterBackground:(UIApplication *)application 29 | { 30 | // 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. 31 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 32 | } 33 | 34 | - (void)applicationWillEnterForeground:(UIApplication *)application 35 | { 36 | // 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. 37 | } 38 | 39 | - (void)applicationDidBecomeActive:(UIApplication *)application 40 | { 41 | // 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. 42 | } 43 | 44 | - (void)applicationWillTerminate:(UIApplication *)application 45 | { 46 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 47 | } 48 | 49 | @end 50 | -------------------------------------------------------------------------------- /GBA4IOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manule1019/GBA4IOS/d3b4c2e87a06df0c0f94e6ed0cb560d32f254541/GBA4IOS/Default-568h@2x.png -------------------------------------------------------------------------------- /GBA4IOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manule1019/GBA4IOS/d3b4c2e87a06df0c0f94e6ed0cb560d32f254541/GBA4IOS/Default.png -------------------------------------------------------------------------------- /GBA4IOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manule1019/GBA4IOS/d3b4c2e87a06df0c0f94e6ed0cb560d32f254541/GBA4IOS/Default@2x.png -------------------------------------------------------------------------------- /GBA4IOS/GBA4IOS-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | GITHUB.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | UIInterfaceOrientationPortraitUpsideDown 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /GBA4IOS/GBA4IOS-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'GBA4IOS' target in the 'GBA4IOS' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_3_0 8 | #warning "This project uses features only available in iOS SDK 3.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #endif 15 | -------------------------------------------------------------------------------- /GBA4IOS/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GBA4IOS/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // GBA4IOS 4 | // 5 | // Created by Manuelita Ramos on 6/12/13. 6 | // Copyright (c) 2013 Manuelita Ramos. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /GBA4IOSTests/GBA4IOSTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | GITHUB.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /GBA4IOSTests/GBA4IOSTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // GBA4IOSTests.h 3 | // GBA4IOSTests 4 | // 5 | // Created by Manuelita Ramos on 6/12/13. 6 | // Copyright (c) 2013 Manuelita Ramos. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface GBA4IOSTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /GBA4IOSTests/GBA4IOSTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // GBA4IOSTests.m 3 | // GBA4IOSTests 4 | // 5 | // Created by Manuelita Ramos on 6/12/13. 6 | // Copyright (c) 2013 Manuelita Ramos. All rights reserved. 7 | // 8 | 9 | #import "GBA4IOSTests.h" 10 | 11 | @implementation GBA4IOSTests 12 | 13 | - (void)setUp 14 | { 15 | [super setUp]; 16 | 17 | // Set-up code here. 18 | } 19 | 20 | - (void)tearDown 21 | { 22 | // Tear-down code here. 23 | 24 | [super tearDown]; 25 | } 26 | 27 | - (void)testExample 28 | { 29 | STFail(@"Unit tests are not implemented yet in GBA4IOSTests"); 30 | } 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /GBA4IOSTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------