my UIView has a UILabel and a UIWebView inside, the UILabel is in the top, the UILabel has the height variable:
theTitle.text = [NSString stringWithFormat:@"%@", noticeTitle];
theTitle.lineBreakMode = UILineBreakModeWordWrap;
theTitle.numberOfLines = 0;
[theTitle sizeToFit];
how can I start the UIWebView below the UILabel?
Thank you in advance.
Regards.