Skip to content

Commit 3805bf6

Browse files
committed
update to Xcode 6.1
1 parent 3f1b7dd commit 3805bf6

File tree

6 files changed

+8
-49
lines changed

6 files changed

+8
-49
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
.idea
1+
.idea
2+
PullToRefresh.xcodeproj/xcuserdata/josip04.xcuserdatad
3+
PullToRefresh.xcodeproj/xcuserdata/josip04.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
4+
build

PullToRefresh.xcodeproj/project.pbxproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@
282282
};
283283
C7D1CF8E199BB3C8009FD485 = {
284284
CreatedOnToolsVersion = 6.0;
285+
DevelopmentTeam = 424L75GG87;
285286
};
286287
};
287288
};
@@ -557,6 +558,7 @@
557558
buildSettings = {
558559
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
559560
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
561+
CODE_SIGN_IDENTITY = "iPhone Developer";
560562
INFOPLIST_FILE = "$(SRCROOT)/PullToRefreshDemo/Info.plist";
561563
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
562564
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -568,6 +570,7 @@
568570
buildSettings = {
569571
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
570572
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
573+
CODE_SIGN_IDENTITY = "iPhone Developer";
571574
INFOPLIST_FILE = "$(SRCROOT)/PullToRefreshDemo/Info.plist";
572575
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
573576
PRODUCT_NAME = "$(TARGET_NAME)";

PullToRefresh.xcodeproj/xcuserdata/josip04.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

Lines changed: 0 additions & 5 deletions
This file was deleted.

PullToRefresh.xcodeproj/xcuserdata/josip04.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 0 additions & 42 deletions
This file was deleted.

PullToRefreshDemo/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class ViewController: UIViewController {
7373
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
7474

7575
var cell = UITableViewCell(style: .Default, reuseIdentifier: "Cell")
76-
cell.textLabel.text = "Row " + String(indexPath.row + 1)
76+
cell.textLabel?.text = "Row " + String(indexPath.row + 1)
7777
return cell
7878
}
7979
}

0 commit comments

Comments
 (0)