Skip to content
Snippets Groups Projects
Commit 6a65c458 authored by lazarog98's avatar lazarog98
Browse files

#238 fix variable access modifiers

parent 6f2dfcd8
No related branches found
No related tags found
1 merge request!27Resolve "Improve searching"
...@@ -41,9 +41,9 @@ class InboxViewController: UITableViewController, InboxCellDelegator { ...@@ -41,9 +41,9 @@ class InboxViewController: UITableViewController, InboxCellDelegator {
} }
// how many seconds should the app wait before processing search bar input // how many seconds should the app wait before processing search bar input
var searchDelay = 0.5 private let searchDelay = 0.5
// holds the currently active search timer (if it exists) so it can be terminated if a new character is typed before the execution // holds the currently active search timer (if it exists) so it can be terminated if a new character is typed before the execution
var searchBarTimer: Timer? private var searchBarTimer: Timer?
@IBOutlet weak var lastUpdateButton: UIBarButtonItem! @IBOutlet weak var lastUpdateButton: UIBarButtonItem!
var lastUpdateLabel = UILabel(frame: CGRect.zero) var lastUpdateLabel = UILabel(frame: CGRect.zero)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment