iOS Layout随笔

  • setNeedsLayout
    告诉layoutView页面需要更新,但不立即执行

  • layoutIfNeeded
    告诉layoutView页面布局立即更新

  • layoutSubViews
    系统重写布局的实际方法

  • setNeedsUpdateConstraints
    告诉layoutView需要更新约束,在下次计算或者更新约束会更新约束

  • updateConstraitsIfNeed
    告诉layoutView立即更新约束,

  • updateConstraints
    系统更新约束的实际方法

你可能感兴趣的:(iOS Layout随笔)