質問編集履歴
3
文章の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -235,33 +235,3 @@
|
|
235
235
|
Swift 5.3
|
236
236
|
|
237
237
|
Xcode 12.0.1
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
### 追記
|
244
|
-
|
245
|
-
tableViewでinsertRowsをするとエラーは発生せず、正常に動作しました。
|
246
|
-
|
247
|
-
reloadDataをするのは厳しいでしょうか?
|
248
|
-
|
249
|
-
```Swift
|
250
|
-
|
251
|
-
cellNum += 1
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
tableView.performBatchUpdates({
|
256
|
-
|
257
|
-
// self.tableView.reloadData()
|
258
|
-
|
259
|
-
self.tableView.insertRows(at: [IndexPath(row: 0, section: 0)], with: .automatic)
|
260
|
-
|
261
|
-
}) { (finished) in
|
262
|
-
|
263
|
-
print("===== リロード完了後の処理 ======")
|
264
|
-
|
265
|
-
}
|
266
|
-
|
267
|
-
```
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -235,3 +235,33 @@
|
|
235
235
|
Swift 5.3
|
236
236
|
|
237
237
|
Xcode 12.0.1
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
### 追記
|
244
|
+
|
245
|
+
tableViewでinsertRowsをするとエラーは発生せず、正常に動作しました。
|
246
|
+
|
247
|
+
reloadDataをするのは厳しいでしょうか?
|
248
|
+
|
249
|
+
```Swift
|
250
|
+
|
251
|
+
cellNum += 1
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
tableView.performBatchUpdates({
|
256
|
+
|
257
|
+
// self.tableView.reloadData()
|
258
|
+
|
259
|
+
self.tableView.insertRows(at: [IndexPath(row: 0, section: 0)], with: .automatic)
|
260
|
+
|
261
|
+
}) { (finished) in
|
262
|
+
|
263
|
+
print("===== リロード完了後の処理 ======")
|
264
|
+
|
265
|
+
}
|
266
|
+
|
267
|
+
```
|
1
コードの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -176,18 +176,6 @@
|
|
176
176
|
|
177
177
|
|
178
178
|
|
179
|
-
// セクションの数
|
180
|
-
|
181
|
-
func numberOfSections(in tableView: UITableView) -> Int {
|
182
|
-
|
183
|
-
return 1
|
184
|
-
|
185
|
-
}
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
179
|
// セルの数
|
192
180
|
|
193
181
|
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|