In my App I use UITableView with custom cells.
for each cell I implement function to create it, and call these functions in cellFo
Try to implement prepareForReuse method in your custom cell and set all fields text to nil.
prepareForReuse
override func prepareForReuse() -> Void { awamirTextFieldNib.text = nil }
Hope this help