I have UITableViewController and I need to update UILabel value. UITableView contains sections. How do I create a UILabel in the left side of the TableView for update cell values. Because when I create NSArray it is updating the value in the table’s right side, I am not able to add in xib for label in TableView. So please explain how to add a UILabel. It need to add or any other possibility.
I have UITableViewController and I need to update UILabel value. UITableView contains sections. How
Share
To create an UILabel programmaticaly, code:
To display a text within UILabel use:
myLabel.text = @”Lorem…”;
And of course to add UILabel to your view:
By default UILabel has a white background, you can remove the background or change the color easily: