Hi All,
I have a class A that inherits UITableViewCell (to customize a table cell). It has members say x which is a UILabel.
Now, if I want to set values like a.x.text ="some text" in the cellForRowAtIndexPath method, I am getting compiler error "error for member x in cell which is of non-class type UITableViewCell".
Could you please let me know how can I fix this problem?
Thanks.