I have in a ViewController tableView with the identifier \"Cell\". This is my code:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSInd
You cannot change a frame width or height independently. You have to set the complete frame. In Objective C it would be something like
cell.imageView.frame = CGRectMake(cell.imageView.frame.origin.x, cell.imageView.frame.origin.y, 100, 100);