美文网首页
Swift谓词检索,实现搜索记录

Swift谓词检索,实现搜索记录

作者: 贝尔特伦 | 来源:发表于2016-06-26 22:59 被阅读306次
    01.gif

    一:创建tableView及检索需要的属性

    let btnWidth = kScreenW/4-20/4
    class MoreViewController: UIViewController ,UITableViewDelegate,UITableViewDataSource{
    
    var _tableView : UITableView?;
    //全部数据的数组
    var _dataArray : NSMutableArray?;
    //搜索结果的数组,也是界面上真正显示的数据
    var _resultArray : NSArray?;
    var _textF : UITextField?;
    override func viewDidLoad() {
        super.viewDidLoad()
        self.title = "更多";
        self.navigationController?.navigationBar.barTintColor = UIColor.whiteColor();
        _tableView = UITableView(frame: CGRectMake(0, 1, kScreenW, kScreenH-1), style:UITableViewStyle.Plain);
        _tableView?.delegate = self;
        _tableView?.dataSource = self;
        self.view.addSubview(_tableView!);
        //设置通知中心,用来监听textField的内容的改变
        NSNotificationCenter.defaultCenter().addObserver(self, selector: "textfiledTextChangedNotifition:", name: UITextFieldTextDidChangeNotification, object: nil);
        loadData();
    }
    //返回tableView组的头视图的高度
    func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        return 40;
    }
    //自定义tableView组的头视图的方法
    func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        let headView = UIView(frame: CGRectMake(0,0,kScreenW,40));
        headView.backgroundColor = UIColor.brownColor();
        _textF = UITextField(frame: CGRectMake(20,5,kScreenW-100,30));
        _textF?.backgroundColor = UIColor.whiteColor();
        _textF?.textAlignment = NSTextAlignment.Center;
        _textF?.layer.cornerRadius = 2;
        _textF?.layer.masksToBounds = true;
        _textF?.placeholder = "请输入搜索内容";
        headView.addSubview(_textF!);
        
        let searchBtn = UIButton(type: UIButtonType.System);
        searchBtn.frame = CGRectMake(kScreenW-80, 5, 50, 30);
        searchBtn.setTitle("搜索", forState: UIControlState.Normal);
        searchBtn.setTitleColor(UIColor.blackColor(), forState: UIControlState.Normal);
        searchBtn.addTarget(self, action: "searchBtnAction:", forControlEvents: UIControlEvents.TouchUpInside);
        headView.addSubview(searchBtn);
        
        return headView;
    }
    
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        if _resultArray == nil {
            
            return 0;
        }
        return (_resultArray?.count)!;
    }
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
        
        let ID = "hisCell";
        var cell = tableView.dequeueReusableCellWithIdentifier(ID);
        
        if cell == nil {
            cell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: ID);
        }
        let text = _resultArray![indexPath.row];
        cell?.textLabel?.text = text as? String;
        return cell!;
    }
    //tableView delegate
    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        tableView.deselectRowAtIndexPath(indexPath, animated: true);
        let str = _resultArray![indexPath.row];
        searchWithText(str as! String);
        
    }
    

    二:预留搜索按钮调用的方法

    //搜索按钮调用的方法
    func searchBtnAction(btn : UIButton){
        if _textF!.text == nil {
            return;
        }
        //保存用户输入的内容
        waritToPlist();
        searchWithText((_textF?.text)!);
    }
    //去搜索调用的方法
    func searchWithText(txt:String){
        
    }
    

    三:实时检索,随着textField输入内容,而开始检索,这里用通知来实现的

    //通知中心调用的方法
    func textfiledTextChangedNotifition(userInfo : NSNotification){
        let str = (_textF?.text)! as NSString;
        if str.length <= 0 {
            
            _resultArray = _dataArray;
            _tableView?.reloadData();
            return;
        }
        let predicate = NSPredicate(format: "SELF CONTAINS[c] %@",(_textF?.text)!);
        
        let reArray = _dataArray?.filteredArrayUsingPredicate(predicate);
        _resultArray = reArray;
        _tableView?.reloadData();
    }
    

    四:保存用户输入搜索的内容

    func waritToPlist(){
        //如果用户输入的内容,之前保存过了,就不在做操作
        if _dataArray?.containsObject((_textF?.text)!) == true {
            return;
        }
        _dataArray?.addObject((_textF?.text)!);
        let path1 = NSHomeDirectory()
        let path = path1 + "/Documents/historySearchList.plist";
        _dataArray?.writeToFile(path, atomically: true);
    }
    

    五:加载用户之前所搜索的内容

    func loadData(){
        let path1 = NSHomeDirectory()
        let path = path1 + "/Documents/historySearchList.plist";
        /**NSFileManage文件管理*/
        let manage = NSFileManager.defaultManager();
        //判断文件是否存在
        let isExist = manage.fileExistsAtPath(path);
        if isExist == false {
            let array = ["斗战神","飞升之后"] as NSArray;
    
            array.writeToFile(path, atomically: true);
        }
        _dataArray = NSMutableArray(contentsOfFile: path);
        _resultArray = _dataArray;
        _tableView?.reloadData();
    }
    

    Swift交流群号:512847147

    相关文章

      网友评论

          本文标题:Swift谓词检索,实现搜索记录

          本文链接:https://www.haomeiwen.com/subject/ggkzdttx.html