我点击了一个显示/隐藏日期选择器,并使用Tableview在按钮上显示了日期。 但是当我运行它时,tableview内部和datepicker之间有奇怪的空白空间。 当我单击此空间时,出现错误
“线程1:致命错误:解开可选值时意外发现nil”
我认为这是因为我设置了原型单元:1.因此我将其设置为0,但也没有起作用。
var dateFormatter = DateFormatter()
var datePickerIndexPath: NSIndexPath?
var datepicker : UIDatePicker?
@IBOutlet weak var ddn: UIButton!
@IBOutlet weak var TV: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
TV.isHidden=true
datepicker = UIDatePicker()
datepicker? = UIDatePicker.init(frame: CGRect(x:0, y:40, width:252, height:150))
datepicker?.setValue(UIColor(red:0.95, green:0.92, blue:0.90, alpha:1.0), forKeyPath: "textColor")
datepicker?.datePickerMode = .date
datepicker?.addTarget(self, action: #selector(datepickerViewController.dateChanged(datepicker: )),for: .valueChanged)
TV.addSubview(datepicker!)
}
...
button click action/animate
...
// talbe视图部分//
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
var rows = 1
if datePickerIndexPath != nil {rows += 1 }
return rows
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "DatePickerCell", for: indexPath)
cell.textLabel?.text = dateFormatter.string(from: (datepicker?.date)!)
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
ddn.setTitle("\(datePickerIndexPath!.row)", for: .normal)
//when i click the space, an error occurs in this part//
}
}
答案 0 :(得分:0)
您的代码崩溃了,因为datePickerIndexPath
是一个从未设置的可选值。像这样声明它不会赋予变量任何值:
var datePickerIndexPath: NSIndexPath?
因此,datePickerIndexPath
的值为零。
解决方案是完全摆脱该变量。然后,更改此代码:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
ddn.setTitle("\(datePickerIndexPath!.row)", for: .normal)
}
对此:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
ddn.setTitle("\(indexPath.row)", for: .normal)
}
didSelectRowAt
方法已经给您indexPath
,它告诉您用户选择的行。