Add restrictions to the image (top, lead, end, height)
Do not add lower limits

Add restrictions for each label (top, front, back, bottom)

Add restrictions for the last tag (top, lead, end, bottom)

Set each label
Number of rows = 0
Line break mode = word warp

Method for Presenting Tables and Table Delegates
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCellWithIdentifier("PropertyListCell", forIndexPath: indexPath) as UITableViewCell! imgProperty = viewBg.viewWithTag(111) as! RemoteImageView lblPropertyName = viewBg.viewWithTag(112) as! UILabel lblPrice = viewBg.viewWithTag(113) as! UILabel lblAddress = viewBg.viewWithTag(114) as! UILabel lblAreaPerSquare = viewBg.viewWithTag(115) as! UILabel imgProperty.imageURL = NSURL(string: "Image Url") lblPropertyName.text="Jai Maharashtra Apartment" lblPrice.text="Rs. 900 - 10000" lblAddress.text="411041,Maharashtra Sadan, Pune, Maharashtra , India"
Now all tags are Dynamic

source share