//
// ZYViewController.h
// UISearchBar
//
// Created by 张毛 on 15-9-9.
// Copyright (c) 2015年 ZM. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <addressBook/AddressBook.h rel='nofollow' onclick='return false;'>
@interface ZYViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,UISearchBarDelegate,UISearchDisplayDelegate>
{
UISearchBar* _searchBar;
}
@property(nonatomic,retain)NSMutableArray* contactsArray;//保存所有的联系人
@property (nonatomic,retain)NSMutableArray* resultsArray;//保存搜索条件符合的联系人;
@property (retain, nonatomic) IBOutlet UITableView *tableView;
@end