I have written a subclass of UITableViewcell which consists of various UILabels I have defined style of UIlabel in
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString*)reuseIdentifier
and frame rect of labels in
- (void)layoutSubviews
Now after defining static rect for UILabels I want to modify the rect of UILabels, and write a function to do so in which I am modifying the frame labels, but calling this function doesn't modify the frame of UILabels.
If anyone has idea how to achieve dynamic frame of labels please share it.