我有一个Table视图,我需要使用带有标签和文本字段的自定义单元格。我在故事板中设计了单元格。我已将自定义单元格的类设置为$("#some-p-tag").on("touchstart", function(e){
e.preventDefault();
var $elem = $(this);
if($elem.is(":focus")) {
//this can be registered as a "click" on a mobile device, as it's a double tap
$elem.blur()
}
else {
$elem.focus();
}
});
,并且我已将其重新标识为ItemRowCell
。我已将标签和文字字段连接到itemRowCell
中的相应商店。
这是我的ItemRowCell类的代码
ItemRowCell
在我的数据源中,我有这段代码
class ItemRowCell: UITableViewCell {
@IBOutlet weak var itemDescription: UILabel!
@IBOutlet weak var quantity: UITextField!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
不幸的是,电池中的两个插座都是零。
答案 0 :(得分:0)
断开连接并重新连接插座解决了这个问题。