Commit a6def66

mo khan <mo@mokhan.ca>
2013-05-15 00:37:00
use an array in the people example
1 parent 368fa09
2013-05-07/People/People/Human.m → 2013-05-07/People/People/domain/Human.m
File renamed without changes
2013-05-07/People/People/main.m
@@ -8,7 +8,7 @@
 
 #import <Foundation/Foundation.h>
 #import "Person.h"
-#import "Human.m"
+#import "domain/Human.m"
 
 int main(int argc, const char * argv[])
 {
@@ -25,6 +25,22 @@ int main(int argc, const char * argv[])
         NSLog(@"%@", [person tellMeSomethingIDontKnow]);
         [person change:@"Mo" last_name:@"Ka" age:29];
         NSLog(@"%@", [person tellMeSomethingIDontKnow]);
+        
+        NSArray * firstNames = [[NSArray alloc] initWithObjects:@"hi", nil];
+        NSArray * lastNames =  [[NSArray alloc] initWithObjects:@"hi", nil];
+        NSArray * ages = [[NSArray alloc] initWithObjects:[NSNumber numberWithInt:25], [NSNumber numberWithInt:18], [NSNumber numberWithInt:32], [NSNumber numberWithInt:40], [NSNumber numberWithInt:62], nil];
+
+        NSMutableArray *people = [[NSMutableArray alloc]init];
+        Person *newGuy = [[Person alloc] init];
+
+        for (int i = 0; i < [firstNames count]; i++) {
+          newGuy.firstName = [firstNames objectAtIndex:i];
+          newGuy.lastName = [lastNames objectAtIndex:i];
+          newGuy.age = [[ages objectAtIndex:i] intValue];
+
+          [people addObject:newGuy];
+          NSLog(@"%@ %@ %d", [[people objectAtIndex:i] firstName], [[people objectAtIndex:i] lastName], [[people objectAtIndex:i] age]);
+        }
 
 
         Human * human = [Human new];
2013-05-07/People/People/Person.h
@@ -11,6 +11,7 @@
 @interface Person : NSObject
 @property (strong, nonatomic) NSString * firstName;
 @property (strong, nonatomic) NSString * lastName;
+@property int age;
 -(NSString *)putFirstAndLastTogether:(NSString *)first;
 -(NSString *)fullName;
 -(NSString *)theTruth;
2013-05-07/People/People.xcodeproj/project.xcworkspace/xcuserdata/mo.xcuserdatad/UserInterfaceState.xcuserstate
Binary file
2013-05-09/My First UI/My First UI/en.lproj/InfoPlist.strings
@@ -0,0 +1,2 @@
+/* Localized versions of Info.plist keys */
+
2013-05-09/My First UI/My First UI/en.lproj/View.xib
@@ -0,0 +1,138 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
+	<data>
+		<int key="IBDocument.SystemTarget">1536</int>
+		<string key="IBDocument.SystemVersion">12A269</string>
+		<string key="IBDocument.InterfaceBuilderVersion">2835</string>
+		<string key="IBDocument.AppKitVersion">1187</string>
+		<string key="IBDocument.HIToolboxVersion">624.00</string>
+		<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
+			<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+			<string key="NS.object.0">1919</string>
+		</object>
+		<array key="IBDocument.IntegratedClassDependencies">
+			<string>IBProxyObject</string>
+			<string>IBUIView</string>
+		</array>
+		<array key="IBDocument.PluginDependencies">
+			<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+		</array>
+		<object class="NSMutableDictionary" key="IBDocument.Metadata">
+			<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
+			<integer value="1" key="NS.object.0"/>
+		</object>
+		<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
+			<object class="IBProxyObject" id="372490531">
+				<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
+				<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+			</object>
+			<object class="IBProxyObject" id="843779117">
+				<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
+				<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+			</object>
+			<object class="IBUIView" id="774585933">
+				<reference key="NSNextResponder"/>
+				<int key="NSvFlags">274</int>
+				<string key="NSFrame">{{0, 20}, {320, 548}}</string>
+				<reference key="NSSuperview"/>
+				<reference key="NSWindow"/>
+				<reference key="NSNextKeyView"/>
+				<object class="NSColor" key="IBUIBackgroundColor">
+					<int key="NSColorSpace">3</int>
+					<bytes key="NSWhite">MC43NQA</bytes>
+					<object class="NSColorSpace" key="NSCustomColorSpace">
+						<int key="NSID">2</int>
+					</object>
+				</object>
+				<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+				<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
+				<object class="IBUIScreenMetrics" key="IBUISimulatedDestinationMetrics">
+					<string key="IBUISimulatedSizeMetricsClass">IBUIScreenMetrics</string>
+					<object class="NSMutableDictionary" key="IBUINormalizedOrientationToSizeMap">
+						<bool key="EncodedWithXMLCoder">YES</bool>
+						<array key="dict.sortedKeys">
+							<integer value="1"/>
+							<integer value="3"/>
+						</array>
+						<array key="dict.values">
+							<string>{320, 568}</string>
+							<string>{568, 320}</string>
+						</array>
+					</object>
+					<string key="IBUITargetRuntime">IBCocoaTouchFramework</string>
+					<string key="IBUIDisplayName">Retina 4 Full Screen</string>
+					<int key="IBUIType">2</int>
+				</object>
+				<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+			</object>
+		</array>
+		<object class="IBObjectContainer" key="IBDocument.Objects">
+			<array class="NSMutableArray" key="connectionRecords">
+				<object class="IBConnectionRecord">
+					<object class="IBCocoaTouchOutletConnection" key="connection">
+						<string key="label">view</string>
+						<reference key="source" ref="372490531"/>
+						<reference key="destination" ref="774585933"/>
+					</object>
+					<int key="connectionID">7</int>
+				</object>
+			</array>
+			<object class="IBMutableOrderedSet" key="objectRecords">
+				<array key="orderedObjects">
+					<object class="IBObjectRecord">
+						<int key="objectID">0</int>
+						<array key="object" id="0"/>
+						<reference key="children" ref="1000"/>
+						<nil key="parent"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">-1</int>
+						<reference key="object" ref="372490531"/>
+						<reference key="parent" ref="0"/>
+						<string key="objectName">File's Owner</string>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">-2</int>
+						<reference key="object" ref="843779117"/>
+						<reference key="parent" ref="0"/>
+					</object>
+					<object class="IBObjectRecord">
+						<int key="objectID">6</int>
+						<reference key="object" ref="774585933"/>
+						<reference key="parent" ref="0"/>
+					</object>
+				</array>
+			</object>
+			<dictionary class="NSMutableDictionary" key="flattenedProperties">
+				<string key="-1.CustomClassName">ViewController</string>
+				<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+				<string key="-2.CustomClassName">UIResponder</string>
+				<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+				<string key="6.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+			</dictionary>
+			<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
+			<nil key="activeLocalization"/>
+			<dictionary class="NSMutableDictionary" key="localizations"/>
+			<nil key="sourceID"/>
+			<int key="maxID">7</int>
+		</object>
+		<object class="IBClassDescriber" key="IBDocument.Classes">
+			<array class="NSMutableArray" key="referencedPartialClassDescriptions">
+				<object class="IBPartialClassDescription">
+					<string key="className">ViewController</string>
+					<string key="superclassName">UIViewController</string>
+					<object class="IBClassDescriptionSource" key="sourceIdentifier">
+						<string key="majorKey">IBProjectSource</string>
+						<string key="minorKey">./Classes/ViewController.h</string>
+					</object>
+				</object>
+			</array>
+		</object>
+		<int key="IBDocument.localizationMode">0</int>
+		<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
+		<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
+		<int key="IBDocument.defaultPropertyAccessControl">3</int>
+		<bool key="IBDocument.UseAutolayout">YES</bool>
+		<string key="IBCocoaTouchPluginVersion">1919</string>
+	</data>
+</archive>
2013-05-09/My First UI/My First UI/AppDelegate.h
@@ -0,0 +1,19 @@
+//
+//  AppDelegate.h
+//  My First UI
+//
+//  Created by mo khan on 2013-05-09.
+//  Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@class ViewController;
+
+@interface AppDelegate : UIResponder <UIApplicationDelegate>
+
+@property (strong, nonatomic) UIWindow *window;
+
+@property (strong, nonatomic) ViewController *viewController;
+
+@end
2013-05-09/My First UI/My First UI/AppDelegate.m
@@ -0,0 +1,52 @@
+//
+//  AppDelegate.m
+//  My First UI
+//
+//  Created by mo khan on 2013-05-09.
+//  Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import "AppDelegate.h"
+
+#import "ViewController.h"
+
+@implementation AppDelegate
+
+- (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
2013-05-09/My First UI/My First UI/Data.h
@@ -0,0 +1,13 @@
+//
+//  Data.h
+//  My First UI
+//
+//  Created by mo khan on 2013-05-09.
+//  Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+@interface Data : NSObject
+
+@end
2013-05-09/My First UI/My First UI/Data.m
@@ -0,0 +1,13 @@
+//
+//  Data.m
+//  My First UI
+//
+//  Created by mo khan on 2013-05-09.
+//  Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import "Data.h"
+
+@implementation Data
+
+@end
2013-05-09/My First UI/My First UI/Default-568h@2x.png
Binary file
2013-05-09/My First UI/My First UI/Default.png
Binary file
2013-05-09/My First UI/My First UI/Default@2x.png
Binary file
2013-05-09/My First UI/My First UI/main.m
@@ -0,0 +1,18 @@
+//
+//  main.m
+//  My First UI
+//
+//  Created by mo khan on 2013-05-09.
+//  Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+#import "AppDelegate.h"
+
+int main(int argc, char *argv[])
+{
+    @autoreleasepool {
+        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
+    }
+}
2013-05-09/My First UI/My First UI/My First UI-Info.plist
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>CFBundleDevelopmentRegion</key>
+	<string>en</string>
+	<key>CFBundleDisplayName</key>
+	<string>${PRODUCT_NAME}</string>
+	<key>CFBundleExecutable</key>
+	<string>${EXECUTABLE_NAME}</string>
+	<key>CFBundleIdentifier</key>
+	<string>test.${PRODUCT_NAME:rfc1034identifier}</string>
+	<key>CFBundleInfoDictionaryVersion</key>
+	<string>6.0</string>
+	<key>CFBundleName</key>
+	<string>${PRODUCT_NAME}</string>
+	<key>CFBundlePackageType</key>
+	<string>APPL</string>
+	<key>CFBundleShortVersionString</key>
+	<string>1.0</string>
+	<key>CFBundleSignature</key>
+	<string>????</string>
+	<key>CFBundleVersion</key>
+	<string>1.0</string>
+	<key>LSRequiresIPhoneOS</key>
+	<true/>
+	<key>UIRequiredDeviceCapabilities</key>
+	<array>
+		<string>armv7</string>
+	</array>
+	<key>UISupportedInterfaceOrientations</key>
+	<array>
+		<string>UIInterfaceOrientationPortrait</string>
+		<string>UIInterfaceOrientationLandscapeLeft</string>
+		<string>UIInterfaceOrientationLandscapeRight</string>
+	</array>
+</dict>
+</plist>
2013-05-09/My First UI/My First UI/My First UI-Prefix.pch
@@ -0,0 +1,14 @@
+//
+// Prefix header for all source files of the 'My First UI' target in the 'My First UI' project
+//
+
+#import <Availability.h>
+
+#ifndef __IPHONE_4_0
+#warning "This project uses features only available in iOS SDK 4.0 and later."
+#endif
+
+#ifdef __OBJC__
+    #import <UIKit/UIKit.h>
+    #import <Foundation/Foundation.h>
+#endif
2013-05-09/My First UI/My First UI/ViewController.h
@@ -0,0 +1,13 @@
+//
+//  ViewController.h
+//  My First UI
+//
+//  Created by mo khan on 2013-05-09.
+//  Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@interface ViewController : UIViewController
+
+@end
2013-05-09/My First UI/My First UI/ViewController.m
@@ -0,0 +1,29 @@
+//
+//  ViewController.m
+//  My First UI
+//
+//  Created by mo khan on 2013-05-09.
+//  Copyright (c) 2013 mo khan. All rights reserved.
+//
+
+#import "ViewController.h"
+
+@interface ViewController ()
+
+@end
+
+@implementation ViewController
+
+- (void)viewDidLoad
+{
+    [super viewDidLoad];
+	// Do any additional setup after loading the view, typically from a nib.
+}
+
+- (void)didReceiveMemoryWarning
+{
+    [super didReceiveMemoryWarning];
+    // Dispose of any resources that can be recreated.
+}
+
+@end
2013-05-09/My First UI/My First UI.xcodeproj/project.pbxproj
@@ -0,0 +1,305 @@
+// !$*UTF8*$!
+{
+	archiveVersion = 1;
+	classes = {
+	};
+	objectVersion = 46;
+	objects = {
+
+/* Begin PBXBuildFile section */
+		CDDEBBD9173C949100412299 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CDDEBBD8173C949100412299 /* UIKit.framework */; };
+		CDDEBBDB173C949100412299 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CDDEBBDA173C949100412299 /* Foundation.framework */; };
+		CDDEBBDD173C949100412299 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CDDEBBDC173C949100412299 /* CoreGraphics.framework */; };
+		CDDEBBE3173C949100412299 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CDDEBBE1173C949100412299 /* InfoPlist.strings */; };
+		CDDEBBE5173C949100412299 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = CDDEBBE4173C949100412299 /* main.m */; };
+		CDDEBBE9173C949100412299 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = CDDEBBE8173C949100412299 /* AppDelegate.m */; };
+		CDDEBBEB173C949100412299 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = CDDEBBEA173C949100412299 /* Default.png */; };
+		CDDEBBED173C949100412299 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = CDDEBBEC173C949100412299 /* Default@2x.png */; };
+		CDDEBBEF173C949100412299 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = CDDEBBEE173C949100412299 /* Default-568h@2x.png */; };
+		CDDEBBF2173C949100412299 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CDDEBBF1173C949100412299 /* ViewController.m */; };
+		CDDEBBF5173C949100412299 /* ViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = CDDEBBF3173C949100412299 /* ViewController.xib */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXFileReference section */
+		CDDEBBD5173C949100412299 /* My First UI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "My First UI.app"; sourceTree = BUILT_PRODUCTS_DIR; };
+		CDDEBBD8173C949100412299 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
+		CDDEBBDA173C949100412299 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
+		CDDEBBDC173C949100412299 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
+		CDDEBBE0173C949100412299 /* My First UI-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "My First UI-Info.plist"; sourceTree = "<group>"; };
+		CDDEBBE2173C949100412299 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+		CDDEBBE4173C949100412299 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
+		CDDEBBE6173C949100412299 /* My First UI-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "My First UI-Prefix.pch"; sourceTree = "<group>"; };
+		CDDEBBE7173C949100412299 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
+		CDDEBBE8173C949100412299 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
+		CDDEBBEA173C949100412299 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
+		CDDEBBEC173C949100412299 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
+		CDDEBBEE173C949100412299 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
+		CDDEBBF0173C949100412299 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
+		CDDEBBF1173C949100412299 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
+		CDDEBBF4173C949100412299 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/ViewController.xib; sourceTree = "<group>"; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+		CDDEBBD2173C949100412299 /* Frameworks */ = {
+			isa = PBXFrameworksBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+				CDDEBBD9173C949100412299 /* UIKit.framework in Frameworks */,
+				CDDEBBDB173C949100412299 /* Foundation.framework in Frameworks */,
+				CDDEBBDD173C949100412299 /* CoreGraphics.framework in Frameworks */,
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+		};
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+		CDDEBBCC173C949100412299 = {
+			isa = PBXGroup;
+			children = (
+				CDDEBBDE173C949100412299 /* My First UI */,
+				CDDEBBD7173C949100412299 /* Frameworks */,
+				CDDEBBD6173C949100412299 /* Products */,
+			);
+			sourceTree = "<group>";
+		};
+		CDDEBBD6173C949100412299 /* Products */ = {
+			isa = PBXGroup;
+			children = (
+				CDDEBBD5173C949100412299 /* My First UI.app */,
+			);
+			name = Products;
+			sourceTree = "<group>";
+		};
+		CDDEBBD7173C949100412299 /* Frameworks */ = {
+			isa = PBXGroup;
+			children = (
+				CDDEBBD8173C949100412299 /* UIKit.framework */,
+				CDDEBBDA173C949100412299 /* Foundation.framework */,
+				CDDEBBDC173C949100412299 /* CoreGraphics.framework */,
+			);
+			name = Frameworks;
+			sourceTree = "<group>";
+		};
+		CDDEBBDE173C949100412299 /* My First UI */ = {
+			isa = PBXGroup;
+			children = (
+				CDDEBBE7173C949100412299 /* AppDelegate.h */,
+				CDDEBBE8173C949100412299 /* AppDelegate.m */,
+				CDDEBBF0173C949100412299 /* ViewController.h */,
+				CDDEBBF1173C949100412299 /* ViewController.m */,
+				CDDEBBF3173C949100412299 /* ViewController.xib */,
+				CDDEBBDF173C949100412299 /* Supporting Files */,
+			);
+			path = "My First UI";
+			sourceTree = "<group>";
+		};
+		CDDEBBDF173C949100412299 /* Supporting Files */ = {
+			isa = PBXGroup;
+			children = (
+				CDDEBBE0173C949100412299 /* My First UI-Info.plist */,
+				CDDEBBE1173C949100412299 /* InfoPlist.strings */,
+				CDDEBBE4173C949100412299 /* main.m */,
+				CDDEBBE6173C949100412299 /* My First UI-Prefix.pch */,
+				CDDEBBEA173C949100412299 /* Default.png */,
+				CDDEBBEC173C949100412299 /* Default@2x.png */,
+				CDDEBBEE173C949100412299 /* Default-568h@2x.png */,
+			);
+			name = "Supporting Files";
+			sourceTree = "<group>";
+		};
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+		CDDEBBD4173C949100412299 /* My First UI */ = {
+			isa = PBXNativeTarget;
+			buildConfigurationList = CDDEBBF8173C949100412299 /* Build configuration list for PBXNativeTarget "My First UI" */;
+			buildPhases = (
+				CDDEBBD1173C949100412299 /* Sources */,
+				CDDEBBD2173C949100412299 /* Frameworks */,
+				CDDEBBD3173C949100412299 /* Resources */,
+			);
+			buildRules = (
+			);
+			dependencies = (
+			);
+			name = "My First UI";
+			productName = "My First UI";
+			productReference = CDDEBBD5173C949100412299 /* My First UI.app */;
+			productType = "com.apple.product-type.application";
+		};
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+		CDDEBBCD173C949100412299 /* Project object */ = {
+			isa = PBXProject;
+			attributes = {
+				LastUpgradeCheck = 0460;
+				ORGANIZATIONNAME = "mo khan";
+			};
+			buildConfigurationList = CDDEBBD0173C949100412299 /* Build configuration list for PBXProject "My First UI" */;
+			compatibilityVersion = "Xcode 3.2";
+			developmentRegion = English;
+			hasScannedForEncodings = 0;
+			knownRegions = (
+				en,
+			);
+			mainGroup = CDDEBBCC173C949100412299;
+			productRefGroup = CDDEBBD6173C949100412299 /* Products */;
+			projectDirPath = "";
+			projectRoot = "";
+			targets = (
+				CDDEBBD4173C949100412299 /* My First UI */,
+			);
+		};
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+		CDDEBBD3173C949100412299 /* Resources */ = {
+			isa = PBXResourcesBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+				CDDEBBE3173C949100412299 /* InfoPlist.strings in Resources */,
+				CDDEBBEB173C949100412299 /* Default.png in Resources */,
+				CDDEBBED173C949100412299 /* Default@2x.png in Resources */,
+				CDDEBBEF173C949100412299 /* Default-568h@2x.png in Resources */,
+				CDDEBBF5173C949100412299 /* ViewController.xib in Resources */,
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+		};
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+		CDDEBBD1173C949100412299 /* Sources */ = {
+			isa = PBXSourcesBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+				CDDEBBE5173C949100412299 /* main.m in Sources */,
+				CDDEBBE9173C949100412299 /* AppDelegate.m in Sources */,
+				CDDEBBF2173C949100412299 /* ViewController.m in Sources */,
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+		};
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXVariantGroup section */
+		CDDEBBE1173C949100412299 /* InfoPlist.strings */ = {
+			isa = PBXVariantGroup;
+			children = (
+				CDDEBBE2173C949100412299 /* en */,
+			);
+			name = InfoPlist.strings;
+			sourceTree = "<group>";
+		};
+		CDDEBBF3173C949100412299 /* ViewController.xib */ = {
+			isa = PBXVariantGroup;
+			children = (
+				CDDEBBF4173C949100412299 /* en */,
+			);
+			name = ViewController.xib;
+			sourceTree = "<group>";
+		};
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+		CDDEBBF6173C949100412299 /* Debug */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				ALWAYS_SEARCH_USER_PATHS = NO;
+				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+				CLANG_CXX_LIBRARY = "libc++";
+				CLANG_ENABLE_OBJC_ARC = YES;
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
+				CLANG_WARN_EMPTY_BODY = YES;
+				CLANG_WARN_ENUM_CONVERSION = YES;
+				CLANG_WARN_INT_CONVERSION = YES;
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = 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_WARN_ABOUT_RETURN_TYPE = YES;
+				GCC_WARN_UNINITIALIZED_AUTOS = YES;
+				GCC_WARN_UNUSED_VARIABLE = YES;
+				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
+				ONLY_ACTIVE_ARCH = YES;
+				SDKROOT = iphoneos;
+			};
+			name = Debug;
+		};
+		CDDEBBF7173C949100412299 /* Release */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				ALWAYS_SEARCH_USER_PATHS = NO;
+				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+				CLANG_CXX_LIBRARY = "libc++";
+				CLANG_ENABLE_OBJC_ARC = YES;
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
+				CLANG_WARN_EMPTY_BODY = YES;
+				CLANG_WARN_ENUM_CONVERSION = YES;
+				CLANG_WARN_INT_CONVERSION = YES;
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+				COPY_PHASE_STRIP = YES;
+				GCC_C_LANGUAGE_STANDARD = gnu99;
+				GCC_WARN_ABOUT_RETURN_TYPE = YES;
+				GCC_WARN_UNINITIALIZED_AUTOS = YES;
+				GCC_WARN_UNUSED_VARIABLE = YES;
+				IPHONEOS_DEPLOYMENT_TARGET = 6.1;
+				OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
+				SDKROOT = iphoneos;
+				VALIDATE_PRODUCT = YES;
+			};
+			name = Release;
+		};
+		CDDEBBF9173C949100412299 /* Debug */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				GCC_PRECOMPILE_PREFIX_HEADER = YES;
+				GCC_PREFIX_HEADER = "My First UI/My First UI-Prefix.pch";
+				INFOPLIST_FILE = "My First UI/My First UI-Info.plist";
+				PRODUCT_NAME = "$(TARGET_NAME)";
+				WRAPPER_EXTENSION = app;
+			};
+			name = Debug;
+		};
+		CDDEBBFA173C949100412299 /* Release */ = {
+			isa = XCBuildConfiguration;
+			buildSettings = {
+				GCC_PRECOMPILE_PREFIX_HEADER = YES;
+				GCC_PREFIX_HEADER = "My First UI/My First UI-Prefix.pch";
+				INFOPLIST_FILE = "My First UI/My First UI-Info.plist";
+				PRODUCT_NAME = "$(TARGET_NAME)";
+				WRAPPER_EXTENSION = app;
+			};
+			name = Release;
+		};
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+		CDDEBBD0173C949100412299 /* Build configuration list for PBXProject "My First UI" */ = {
+			isa = XCConfigurationList;
+			buildConfigurations = (
+				CDDEBBF6173C949100412299 /* Debug */,
+				CDDEBBF7173C949100412299 /* Release */,
+			);
+			defaultConfigurationIsVisible = 0;
+			defaultConfigurationName = Release;
+		};
+		CDDEBBF8173C949100412299 /* Build configuration list for PBXNativeTarget "My First UI" */ = {
+			isa = XCConfigurationList;
+			buildConfigurations = (
+				CDDEBBF9173C949100412299 /* Debug */,
+				CDDEBBFA173C949100412299 /* Release */,
+			);
+			defaultConfigurationIsVisible = 0;
+		};
+/* End XCConfigurationList section */
+	};
+	rootObject = CDDEBBCD173C949100412299 /* Project object */;
+}