-
Notifications
You must be signed in to change notification settings - Fork 767
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f47f15d
commit 9296bce
Showing
2 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## 12.`setNeedsDisplay` 和 `layoutIfNeeded` 两者是什么关系? | ||
|
||
|
||
`setNeedsDisplay` 是给当前的视图做了标记。 | ||
|
||
`layoutIfNeeded` 查找是否有标记,如果有标记及立刻刷新。 | ||
|
||
只有这二者合起来使用,才会起到立刻刷新的效果。 |