Skip to content

Commit

Permalink
added gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
kccarbone committed May 1, 2014
2 parents f7977f4 + 5b5920d commit 1bb126e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions Mocha.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Mocha/Mocha-Prefix.pch";
INFOPLIST_FILE = "Mocha/Mocha-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
Expand All @@ -412,6 +413,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "Mocha/Mocha-Prefix.pch";
INFOPLIST_FILE = "Mocha/Mocha-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
Expand Down
Binary file not shown.
10 changes: 5 additions & 5 deletions Mocha/Base.lproj/Main.storyboard
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="5056" systemVersion="13C1021" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" initialViewController="GFV-Xk-J5c">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="5056" systemVersion="13A603" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" initialViewController="GFV-Xk-J5c">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="3733"/>
</dependencies>
Expand Down Expand Up @@ -65,7 +65,7 @@
<scene sceneID="lfo-Zr-GQ4">
<objects>
<tableViewController id="3IY-Au-upu" customClass="MochaMainTableViewController" sceneMemberID="viewController">
<tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="9n8-Sh-8Gs">
<tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" indicatorStyle="black" dataMode="prototypes" style="plain" separatorStyle="default" allowsSelectionDuringEditing="YES" allowsMultipleSelectionDuringEditing="YES" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="9n8-Sh-8Gs">
<rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
Expand Down Expand Up @@ -94,7 +94,7 @@
<outlet property="delegate" destination="3IY-Au-upu" id="zJF-xW-8iI"/>
</connections>
</tableView>
<navigationItem key="navigationItem" title="Mocha" id="G4g-wo-QI5"/>
<navigationItem key="navigationItem" title="Mocha" id="chW-k0-DSy"/>
<connections>
<segue destination="wnV-et-K2I" kind="push" identifier="segueMainSelected" id="dGd-Az-38G"/>
</connections>
Expand All @@ -103,7 +103,7 @@
</objects>
<point key="canvasLocation" x="1706" y="-355"/>
</scene>
<!--View Controller - TheDog-->
<!--View Controller - The Dog-->
<scene sceneID="IF7-1k-Rrg">
<objects>
<viewController id="wnV-et-K2I" sceneMemberID="viewController">
Expand All @@ -116,7 +116,7 @@
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
<navigationItem key="navigationItem" title="TheDog" id="lTt-bW-duA"/>
<navigationItem key="navigationItem" title="The Dog" id="lTt-bW-duA"/>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="8Qw-ss-8a2" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
Expand Down
2 changes: 1 addition & 1 deletion Mocha/MochaMainTableViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"tvcMochaMain" forIndexPath:indexPath];

cell.textLabel.text = @"This is just a test";
cell.textLabel.text = @"The Dog";

return cell;
}
Expand Down

0 comments on commit 1bb126e

Please sign in to comment.