Skip to content

Commit 14ffad4

Browse files
author
Ivan
committed
Merge branch '174-methods-not-properties' into 'dev'
objectbox-swift#174 No more properties, but methods to indicate they may take a bit of time. See merge request objectbox/objectbox-swift-public!5
2 parents f4ff09c + 1e5f7f0 commit 14ffad4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Example/NotesExample-iOS/MasterViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ extension MasterViewController {
5050

5151
if indexPath.section == 0 {
5252
if indexPath.row == 0 {
53-
cell.detailTextLabel?.text = "\(noteBox.count)"
53+
cell.detailTextLabel?.text = "\(noteBox.count())"
5454
} else if indexPath.row == 1 {
55-
cell.detailTextLabel?.text = "\(authorBox.count)"
55+
cell.detailTextLabel?.text = "\(authorBox.count())"
5656
}
5757
}
5858

0 commit comments

Comments
 (0)