Reputation: 105
I used table view and xib one text field in section. I one uilable in xib how to hide and show it for error message in table view.
Upvotes: 0
Views: 383
Reputation: 269
To show error messages, you can simply add a UILabel
to the tableview cell and hide it by using myLabel.isHidden = true
when there is no error.
Upvotes: 1