mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-03-31 14:43:09 +02:00
small demo fix
This commit is contained in:
@@ -20,7 +20,7 @@ class QueryingResultsViewController: UITableViewController {
|
|||||||
self.values = array.map { (item: AnyObject) -> (title: String, detail: String) in
|
self.values = array.map { (item: AnyObject) -> (title: String, detail: String) in
|
||||||
(
|
(
|
||||||
title: item.description,
|
title: item.description,
|
||||||
detail: String(reflecting: item)
|
detail: String(reflecting: item.dynamicType)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@ class QueryingResultsViewController: UITableViewController {
|
|||||||
self.values = [
|
self.values = [
|
||||||
(
|
(
|
||||||
title: item.description,
|
title: item.description,
|
||||||
detail: String(reflecting: item)
|
detail: String(reflecting: item.dynamicType)
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user