I\'m working through the tutorial here (learning Swift) for my first app: http://www.appcoda.com/search-bar-tutorial-ios7/
I\'m stuck on this part (Objective-C code)
I think this would be a better way to do it in Swift:
func filterContentForSearchText(searchText:NSString, scope:NSString) { searchResults = recipes.filter { name.rangeOfString(searchText) != nil } }