我正在制作一个从左侧滑动的侧栏菜单!它设置了动画。在开始时,侧栏菜单(表格视图控制器)的比例为0.7,在它变得可见后,比例增加到1.0。问题是当刻度增加时,单元格的宽度保持与0.7的刻度相同。但是,tableViewController的宽度增加了。我不明白为什么单元格的宽度不会与UITableViewContoller宽度一起增加?
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("sideBarCell", forIndexPath: indexPath) as UITableViewCell
cell.textLabel?.text = arrayMenu[indexPath.row]
cell.textLabel?.textColor = UIColor.whiteColor()
cell.backgroundColor = UIColor.clearColor()
cell.textLabel?.font = UIFont(name: "Avenir-Book", size: 25)
cell.textLabel?.sizeToFit()
cell.updateConstraints()
return cell
}