I am having issues with attributed UILabel placed inside custom table view cell. I have a custom cell that contains atrtributed label. I am assigning attributed text from code:
self.paymentLabel.attributedText = attributedString;
When I navigate to next screen by selecting one of the cells, all attributed labels in all cells are resetting.
I tried to reload attributed string in -layoutSubviews
method inside cell, but it didn't help. One thing that helped is to reload data in tableView, but it's surely only workaround.
Does anyone has idea what can be the issue?