Skip to content

Commit

Permalink
update to Xcode 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jcavar committed Dec 13, 2014
1 parent 3f1b7dd commit 3805bf6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 49 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.idea
.idea
PullToRefresh.xcodeproj/xcuserdata/josip04.xcuserdatad
PullToRefresh.xcodeproj/xcuserdata/josip04.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
build
3 changes: 3 additions & 0 deletions PullToRefresh.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@
};
C7D1CF8E199BB3C8009FD485 = {
CreatedOnToolsVersion = 6.0;
DevelopmentTeam = 424L75GG87;
};
};
};
Expand Down Expand Up @@ -557,6 +558,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
INFOPLIST_FILE = "$(SRCROOT)/PullToRefreshDemo/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -568,6 +570,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
CODE_SIGN_IDENTITY = "iPhone Developer";
INFOPLIST_FILE = "$(SRCROOT)/PullToRefreshDemo/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Binary file not shown.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion PullToRefreshDemo/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class ViewController: UIViewController {
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {

var cell = UITableViewCell(style: .Default, reuseIdentifier: "Cell")
cell.textLabel.text = "Row " + String(indexPath.row + 1)
cell.textLabel?.text = "Row " + String(indexPath.row + 1)
return cell
}
}
Expand Down

0 comments on commit 3805bf6

Please sign in to comment.