Code:
CGRect bounds = label1.bounds;
bounds.size = [label1.text sizeWithFont:label1.font];
label1.bounds = bounds;
why can't I write label1.bounds.size = [label1.text sizeWithFont:label1.font]; ?
I get error expression is not not assignable ?