Skip to content

Commit be17feb

Browse files
committed
updated for Xcode 6.3 and Swift 1.2
1 parent a485d42 commit be17feb

File tree

4 files changed

+42
-1
lines changed

4 files changed

+42
-1
lines changed
6 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDESourceControlProjectFavoriteDictionaryKey</key>
6+
<false/>
7+
<key>IDESourceControlProjectIdentifier</key>
8+
<string>045DCA97-A13F-418C-8E64-B5E239DEED99</string>
9+
<key>IDESourceControlProjectName</key>
10+
<string>IOS8SwiftActionsTableViewTutorial</string>
11+
<key>IDESourceControlProjectOriginsDictionary</key>
12+
<dict>
13+
<key>0B5DE09DB2E2FB7363ABEFE25201CBF9E247BD54</key>
14+
<string>https://github.com/ioscreator/ioscreator.git</string>
15+
</dict>
16+
<key>IDESourceControlProjectPath</key>
17+
<string>IOS8SwiftActionsTableViewTutorial/IOS8SwiftActionsTableViewTutorial.xcodeproj</string>
18+
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
19+
<dict>
20+
<key>0B5DE09DB2E2FB7363ABEFE25201CBF9E247BD54</key>
21+
<string>../../..</string>
22+
</dict>
23+
<key>IDESourceControlProjectURL</key>
24+
<string>https://github.com/ioscreator/ioscreator.git</string>
25+
<key>IDESourceControlProjectVersion</key>
26+
<integer>111</integer>
27+
<key>IDESourceControlProjectWCCIdentifier</key>
28+
<string>0B5DE09DB2E2FB7363ABEFE25201CBF9E247BD54</string>
29+
<key>IDESourceControlProjectWCConfigurations</key>
30+
<array>
31+
<dict>
32+
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
33+
<string>public.vcs.git</string>
34+
<key>IDESourceControlWCCIdentifierKey</key>
35+
<string>0B5DE09DB2E2FB7363ABEFE25201CBF9E247BD54</string>
36+
<key>IDESourceControlWCCName</key>
37+
<string>ioscreator</string>
38+
</dict>
39+
</array>
40+
</dict>
41+
</plist>

IOS8SwiftActionsTableViewTutorial/IOS8SwiftActionsTableViewTutorial/TableViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class TableViewController: UITableViewController {
4242

4343

4444
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
45-
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
45+
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! UITableViewCell
4646

4747
cell.textLabel?.text = apps[indexPath.row]
4848

0 commit comments

Comments
 (0)