Last active
May 17, 2017 20:38
-
-
Save farhan-syed/d0cf2ee39259ec72ff3ef0c108e19043 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DisplayTableViewController: UITableViewController, UISearchBarDelegate { | |
let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext | |
var items: [Item] = [] | |
var selectedIndex: Int! | |
var filteredData: [Item] = [] | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment