将 String 数组转换为 Int 数组 Swift

Converting String array into Int Array Swift

String 值转换为数组中的 Int 值后,当我打印到日志时,我得到的是:[0, 0, 0, 0] 输出应为:["18:56:08", "18:56:28", "18:57:23", "18:58:01"] (没有引号和 : 冒号)。

我正在将值添加到字符串数组后直接转换字符串数组。我假设我没有在正确的时间转换值,或者我的方法放错了,这就是我得到 0 0 0 0 输出的原因。

这是我的 ViewController 代码:

class FeedTableViewController: UITableViewController {


var productName = [String]()
var productDescription = [String]()
var linksArray = [String]()
var timeCreatedString = [String]()
var minuteCreatedString = [String]()



var intArray = Array<Int>!()

override func viewDidLoad() {
    super.viewDidLoad()


    var query = PFQuery(className: "ProductInfo")

    query.findObjectsInBackgroundWithBlock ({ (objects, error) -> Void in

    if let objects = objects {

        self.productName.removeAll(keepCapacity: true)
        self.productDescription.removeAll(keepCapacity: true)
        self.linksArray.removeAll(keepCapacity: true)
        self.timeCreatedString.removeAll(keepCapacity: true)

        for object in objects {

            self.productName.append(object["pName"] as! String)

            self.productDescription.append(object["pDescription"] as! String)

            self.linksArray.append((object["pLink"] as? String)!)


// This is where I'm querying and converting the date: 



var createdAt = object.createdAt
            if createdAt != nil {

            let date = NSDate()
            let dateFormatter = NSDateFormatter()
            dateFormatter.dateFormat =  "MM/dd/YYY/HH/mm/ss"
            let string = dateFormatter.stringFromDate(createdAt as NSDate!)

            var arrayOfCompontents = string.componentsSeparatedByString("/")


            self.timeCreatedString.append("\(arrayOfCompontents[0]) \(arrayOfCompontents[1]) \(arrayOfCompontents[2])")

            self.minuteCreatedString.append("\(arrayOfCompontents[3]):\(arrayOfCompontents[4]):\(arrayOfCompontents[5])")

                self.intArray = self.minuteCreatedString.map { Int([=11=]) ?? 0}

                print("INT ARRAY \(self.intArray)")

                print(self.minuteCreatedString.map { Int([=11=]) ?? 0})

                print(self.minuteCreatedString)


            }

            self.tableView.reloadData()


            }


        }


    })


  }

当我在 viewDidLoad 方法中的另一个 ViewController 中尝试此操作而没有 Parse/queries 发生时,我得到了正确的输出:一个转换的整数数组。我假设存在 whenwhere 的问题,我正在将字符串转换为整数。

在什么情况下 order/where 我应该将字符串数组转换为整数数组?我应该从 Date 转换为 Int 吗?如果是这样,我该怎么做?我做错了什么吗?我很困惑....

非常感谢任何帮助!

如果您有一个 NSDate 对象,您可以使用日期格式化程序创建日期字符串

let createdAt = NSDate() // or give date object
let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat =  "HH:mm:ss"
let string = dateFormatter.stringFromDate(createdAt) // "18:56:08"

或者如果您想要小时、分钟和秒的整数值,请使用 NSDateComponents:

let comps = NSCalendar.currentCalendar().components([.Hour, .Minute, .Second], fromDate: createdAt)
let hour = comps.hour
let minute = comps.minute
let seconds = comps.second
let intArray = [hour, minute, second]