You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually I have spread view in table view cell. Spread view have 101 rows and 15 columns in each row. There is only one text field in each cell. Now when i run the app in iOS 12 then after scrolling 2 to 3 times the cell should be work properly.
Actual Behavior
Now when i run the app in iOS 12 then after scrolling 2 to 3 times the cells are overlapping each others.
Steps to Reproduce the Problem
2.Table view cell code:
class TableCell: UITableViewCell,SpreadsheetViewDataSource {
Expected Behavior
Actually I have spread view in table view cell. Spread view have 101 rows and 15 columns in each row. There is only one text field in each cell. Now when i run the app in iOS 12 then after scrolling 2 to 3 times the cell should be work properly.
Actual Behavior
Now when i run the app in iOS 12 then after scrolling 2 to 3 times the cells are overlapping each others.
Steps to Reproduce the Problem
2.Table view cell code:
class TableCell: UITableViewCell,SpreadsheetViewDataSource {
}
spread sheet cell code:
class BottomInputCell:Cell,UIPickerViewDataSource,UIPickerViewDelegate,UITextFieldDelegate
{
@IBOutlet weak var txtField: JKTextField!
let pickerView = UIPickerView()
var itemPath = IndexPath()
override init(frame: CGRect) {
super.init(frame: frame)
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
func setData(indexPath:IndexPath){
let data = currentInventoryModal.inventoryBottomSection[indexPath.row][indexPath.column]
txtField.text = data.value
txtField.placeholder = data.placeHolder
txtField.tag = indexPath.row
txtField.delegate = self
itemPath = indexPath
txtField.isUserInteractionEnabled = data.isEditable!
if (data.isDropDown ?? false){
txtField.rightImage = "dropDown"
txtField.inputView = pickerView
pickerView.delegate = self
pickerView.dataSource = self
}
else{
txtField.rightImage = ""
txtField.rightView = UIView()
txtField.inputView = .none
}
}
}
Specifications
The text was updated successfully, but these errors were encountered: