ios - changing a customlabel within an expanding UItableviewcell -
I have created a custom table cell that spreads. When it is spread, it shows UILBL with two UIButtons that UILBL should show data from the backend. I have created customlabel in the CustomCell interface file, then I imported the customcell class into my InboxTable VIPU controller, and implemented custom cell. The label only appears when the cell is tapped, and spreads. How would I go about changing UILabel, because cell.customLabel.text will not work here, because it is not the property of the cell. Here is the related code: CustomCell.h @interface Customcell: UTable Viewer {UIImage * userImage; UILBL * Username; // The widgets below will be displayed, when the user has left the public UI button * button, * the right button; UILBL * Custom Label; BOOL UserTap; } @ Property (weak, non-monomitive) IBotllet UILBL * Username; @ Property (weak, non-monomitive) IBotlet UIIMAviewView * user image; - (zero) set data: (NSDictionary *) D; @end and the InboxUntinator here. M is where I ...