这个类显示autoCompleteTextField,但如果你在textField名称写医生在变量医生中显示多少 结果如何减少牙齿只显示十个结果
global $wp_query;
答案 0 :(得分:0)
in
for doctor: Doctor in doctors {
self.listDoctors.append("\(doctor.firstname) \(doctor.lastname)")
}
你正在listDoctors
中添加所有医生列表,如果你只想显示10,你可以添加一个变量来计算你已经添加的manny,然后在达到这个数字时中断,这是一个样本,是以下代码:
var doctorCount = 0
for doctor: Doctor in doctors {
if doctorCount++ == 10{
break
}
self.listDoctors.append("\(doctor.firstname) \(doctor.lastname)")
}
答案 1 :(得分:0)
您只需使用以下一行代码
即可 let Uptocount = 10
var ArrTopTenRecord = self.listDoctors.prefix(Uptocount)
print(" array is \(ArrTopTenRecord)")
之后返回ArrTopTenRecord
以显示结果。