Commit 45b7971c86742786970be822afe4c76e2818b520
1 parent
eff179a538
Exists in
master
first commit
Showing
4 changed files
with
72 additions
and
0 deletions
Show diff stats
README
holaMundo/ViewController.h
| ... | ... | @@ -0,0 +1,13 @@ |
| 1 | +// | |
| 2 | +// ViewController.h | |
| 3 | +// holaMundo | |
| 4 | +// | |
| 5 | +// Created by Cristian Garcia Escobar on 03/12/14. | |
| 6 | +// Copyright (c) 2014 Cristian Garcia Escobar. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import <UIKit/UIKit.h> | |
| 10 | + | |
| 11 | +@interface ViewController : UIViewController | |
| 12 | + | |
| 13 | +@end | ... | ... |
holaMundo/ViewController.m
| ... | ... | @@ -0,0 +1,38 @@ |
| 1 | +// | |
| 2 | +// ViewController.m | |
| 3 | +// holaMundo | |
| 4 | +// | |
| 5 | +// Created by Cristian Garcia Escobar on 03/12/14. | |
| 6 | +// Copyright (c) 2014 Cristian Garcia Escobar. All rights reserved. | |
| 7 | +// | |
| 8 | + | |
| 9 | +#import "ViewController.h" | |
| 10 | + | |
| 11 | +@interface ViewController () | |
| 12 | + | |
| 13 | +@end | |
| 14 | + | |
| 15 | +@implementation ViewController | |
| 16 | + | |
| 17 | +- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil | |
| 18 | +{ | |
| 19 | + self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; | |
| 20 | + if (self) { | |
| 21 | + // Custom initialization | |
| 22 | + } | |
| 23 | + return self; | |
| 24 | +} | |
| 25 | + | |
| 26 | +- (void)viewDidLoad | |
| 27 | +{ | |
| 28 | + [super viewDidLoad]; | |
| 29 | + // Do any additional setup after loading the view from its nib. | |
| 30 | +} | |
| 31 | + | |
| 32 | +- (void)didReceiveMemoryWarning | |
| 33 | +{ | |
| 34 | + [super didReceiveMemoryWarning]; | |
| 35 | + // Dispose of any resources that can be recreated. | |
| 36 | +} | |
| 37 | + | |
| 38 | +@end | ... | ... |
holaMundo/ViewController.xib
| ... | ... | @@ -0,0 +1,21 @@ |
| 1 | +<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| 2 | +<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="5023" systemVersion="13A603" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES"> | |
| 3 | + <dependencies> | |
| 4 | + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3733"/> | |
| 5 | + </dependencies> | |
| 6 | + <objects> | |
| 7 | + <placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="ViewController"> | |
| 8 | + <connections> | |
| 9 | + <outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/> | |
| 10 | + </connections> | |
| 11 | + </placeholder> | |
| 12 | + <placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/> | |
| 13 | + <view clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="i5M-Pr-FkT"> | |
| 14 | + <rect key="frame" x="0.0" y="0.0" width="320" height="568"/> | |
| 15 | + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | |
| 16 | + <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/> | |
| 17 | + <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/> | |
| 18 | + <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/> | |
| 19 | + </view> | |
| 20 | + </objects> | |
| 21 | +</document> | ... | ... |