質問編集履歴

2

変更

2017/01/24 12:57

投稿

taiki9696
taiki9696

スコア17

test CHANGED
File without changes
test CHANGED
@@ -80,7 +80,7 @@
80
80
 
81
81
  cell.textLabel?.text = "セル\(indexPath.row + 1)"
82
82
 
83
- cell.detailTextLabel?.text = "\(indexPath.row + 1)番目のセルの説明"
83
+ cell.detailTextLabel?.text = "\(indexPath.row + 1)"
84
84
 
85
85
 
86
86
 
@@ -108,7 +108,7 @@
108
108
 
109
109
 
110
110
 
111
- print("タップされたセルのindex番号: \(indexPath.row)")
111
+ print(": \(indexPath.row)")
112
112
 
113
113
  }
114
114
 
@@ -126,7 +126,7 @@
126
126
 
127
127
 
128
128
 
129
- print("タップされたアクセサリがあるセルのindex番号: \(indexPath.row)")
129
+ print(": \(indexPath.row)")
130
130
 
131
131
  }
132
132
 

1

変更

2017/01/24 12:57

投稿

taiki9696
taiki9696

スコア17

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,12 @@
1
1
  ViewControllerSwiftに書いたコードが実機では反映されるのですが、storyboardで反映されません。
2
+
3
+
4
+
5
+
6
+
7
+ Clean や Clean Build FolderあとReset Content and Settingsも試しましたが変化なしです。
8
+
9
+
2
10
 
3
11
  ```import UIKit
4
12