// // CountryListView.h // Country List // // Created by Pradyumna Doddala on 18/12/13. // Copyright (c) 2013 Pradyumna Doddala. All rights reserved. // #import #import "PhoneMainView.h" @protocol CountryListViewDelegate - (void)didSelectCountry:(NSDictionary *)country; @end @interface CountryListView : UIViewController @property (nonatomic, weak) iddelegate; - (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope; - (IBAction)onCancelClick:(id)sender; + (NSDictionary *)countryWithIso:(NSString*)iso; + (NSDictionary *)countryWithCountryCode:(NSString*)cc; @end