Aravind
Aravind

Reputation: 105

How to use uitableview inside error under uitextfield and validate

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

Answers (1)

Victor Pro
Victor Pro

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

Related Questions