将NSArray转换为Swift Array

时间:2016-11-18 10:16:17

标签: ios arrays swift nspredicate

我最近和Swift一起玩。我正在使用自定义TableView进行搜索功能。为了使我的搜索工作完美,我跟踪了this家伙,但是从NSArray到Swift Array的转换我遇到了问题。

这是我的代码。

func updateSearchResultsForSearchController(searchController: UISearchController) {
    filtered.removeAll(keepCapacity: false)
    proccessArray.removeAll(keepCapacity: false)
    print("start")
    var array = []
    for i in 0...arrProcessName.count{
        if(arrProcessName[safe: i] != nil && arrRequestedBy[safe: i] != nil && arrCreationTime[safe: i] != nil && arrStatus[safe: i] != nil)
        {
            var newProcess = Process(process: arrProcessName[i], requestor: arrRequestedBy[i], time: arrCreationTime[i], status: arrStatus[i])
            self.proccessArray.append(newProcess)
        }
    }
    print("array: ", proccessArray)
    let searchPredicate = NSPredicate(format: "status CONTAINS[c] %@", "pending")
    array = (proccessArray as NSArray).filteredArrayUsingPredicate(searchPredicate)
    print("array: ", array)
    let arr2 = (array as Array).map { $0 as? String ?? "" }
    filtered = arr2
    print("filtered: ", filtered)

    if(filtered.count == 0){
                    searchActive = false;
                } else {
                    searchActive = true;
                }
    tableView?.reloadData()
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    removeProgressBar()
    let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! HistoryCustomCell

    cell.selectionStyle = .None
    cell.accessoryType = UITableViewCellAccessoryType.None

    if self.searchCtrler.active {
        print("processArray: ",proccessArray[indexPath.row].status as String!)
        cell.lbl_status.text = proccessArray[indexPath.row].status as String!
    } else {
        cell.lbl_request_name.text = arrProcessName[indexPath.row]
        cell.lbl_requested_by.text = "Requested by: " + arrRequestedBy[indexPath.row]
        cell.lbl_creation_time.text = arrCreationTime[indexPath.row]
        cell.lbl_status.text = arrStatus[indexPath.row]

        switch arrStatus[indexPath.row] {
            case "Completed", "Approved":
                cell.img_status.image = UIImage(named: "ic_approved")
            case "Running", "Processing", "Pending":
                cell.img_status.image = UIImage(named: "ic_pending")
            case "Denied", "Rejected":
                cell.img_status.image = UIImage(named: "ic_reject")
            case "Error":
                cell.img_status.image = UIImage(named: "ic_terminated")
            case "Retracted":
                cell.img_status.image = UIImage(named: "ic_retracted")
            default:
                cell.img_status.image = UIImage(named: "")
        }
    }

    return cell
}

课程流程

import Foundation

class Process:NSObject{
var process: NSString!
var requestor: NSString!
var time: NSString!
var status: NSString!

init(process:NSString, requestor:NSString, time: NSString, status: NSString){
    self.process = process
    self.requestor = requestor
    self.time = time
    self.status = status
}

}

我打印了数组,结果是这样的。

array:  (
   "< X.Process: 0x7f8bc94cfa50>"
)

过滤后的转换。我得到一个空数组,它击中了 EXC_BAD_INSTRUCTION

是否有将NSArray转换为Swift数组而不影响NSArray中的数据?

谢谢

1 个答案:

答案 0 :(得分:1)

除了过滤器,您无需将Swift数组[Process]转换为NSArray,您可以直接过滤[Process]数组。

let filterProcess = self.proccessArray.filter { $0.status == "pending" }

在您的情况下,无需使用contains,但如果您需要:

let filterProcess = self.proccessArray.filter { $0.status.localizedCaseInsensitiveContainsString("pending") }