当我使用HKSampleQuery获取HealthKit数据时,我创建了一个数组,然后填充了一个tableview。但是,当我这样做时,我的tableViewCell在血糖数量之后还有许多其他字符。这是单元格的屏幕截图:
我查询数据的地方。请帮忙!
let endDate = NSDate()
let startDate = NSCalendar.current.date(byAdding: .day, value: number, to: endDate as Date)
let sampleType = HKSampleType.quantityType(forIdentifier: HKQuantityTypeIdentifier.bloodGlucose)
let mostRecentPredicate = HKQuery.predicateForSamples(withStart: startDate, end: endDate as Date, options: [])
let query = HKSampleQuery(sampleType: sampleType!, predicate: mostRecentPredicate, limit: HKObjectQueryNoLimit, sortDescriptors: nil) { (query, results, error) in
if let results = results as? [HKQuantitySample] {
self.bloodGlucose = results
}
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
healthStore.execute(query)
这是我设置tableview的地方......
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return bloodGlucose.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let currentCell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
let sugar = bloodGlucose[indexPath.row]
currentCell.textLabel?.text = "\(sugar)"
currentCell.detailTextLabel?.text = dateFormatter.string(from: sugar.startDate)
return currentCell
}
答案 0 :(得分:0)
似乎您正在显示HKQuantitySample
的整个字符串表示形式。如果您只想显示HKQuantitySample
的数量,为什么不使用其quantity
属性?
currentCell.textLabel?.text = "\(sugar.quantity)"
顺便说一下,您最好将endDate
声明为Date
(不是NSDate
):
let endDate = Date()
let startDate = Calendar.current.date(byAdding: .day, value: number, to: endDate)
let sampleType = HKSampleType.quantityType(forIdentifier: .bloodGlucose)
let mostRecentPredicate = HKQuery.predicateForSamples(withStart: startDate, end: endDate)
通常,非NS
类型可以更好地使用Swift。