Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道除了在 iOS 设备中使用动态文本,我们还能控制什么UILabels?
UILabels
例如,有没有办法调整UIImageViews?还是其他UIViews?
UIImageViews
UIViews
如果要在 UITableViewCell 中使用单元格,请使用自动尺寸,例如:
self.yourtableview.rowHeight = UITableViewAutomaticDimension self.yourtableview.estimatedRowHeight = X
这样,您的 uilabel 可以是动态的,您的 UIView 也将是动态的,在 UIImageView 中,具有纵横比的自动布局以适合单元格的高度/宽度。