呼叫layoutSubviews各種情況分析
從百度上搜尋了一下layoutSubviews的用處,以下是搜尋的結果,當然,筆者是會一一驗證的.
1、 init初始化不會觸發layoutSubviews
2、 addSubview會觸發layoutSubviews
3、 設定view的Frame會觸發layoutSubviews,當然前提是frame的值設定前後發生了變化
4、 滾動一個UIScrollView會觸發layoutSubviews
5、 旋轉Screen會觸發父UIView上的layoutSubviews事件
6、 改變一個UIView大小的時候也會觸發父UIView上的layoutSubviews事件
在開始驗證之前,先看看layoutSubviews到底是啥來著:)
Lays out subviews.
The default implementation of this method does nothing on iOS 5.1 and earlier. Otherwise, the default implementation uses any constraints you have set to determine the size and position of any subviews.
在iOS5.1或之前的版本中,這個方法什麼也沒幹.這個方法的預設實現是 用引數來設定subviews的尺寸和位置的 .
Subclasses can override this method as needed to perform more precise layout of their subviews. You should override this method only if the autoresizing and constraint-based behaviors of the subviews do not offer the behavior you want. You can use your implementation to set the frame rectangles of your subviews directly.
如果你需要更加精確的佈局,可以在子類裡面重寫這個方法.僅僅在以下情況下:自動佈局達不到你想要效果時你才有必要重寫這個方法.你可以直接設定subviews的尺寸.
You should not call this method directly. If you want to force a layout update, call the setNeedsLayout method instead to do so prior to the next drawing update. If you want to update the layout of your views immediately, call the layoutIfNeeded method.
你不能直接呼叫這個方法.如果你需要強制layout重新整理,呼叫setNeedsLayout來代替.如果你想要立即重新整理你的view,呼叫layoutIfNeeded
大概總結以下就是:
你不要直接呼叫方法layoutSubviews,如果想要重新整理,請呼叫 setNeedsLayout 或者layoutIfNeeded
好了,開始驗證:)
現在提供繼承至UIView的類如下:
//// TestView.h//
LayoutSubviews//// Copyright (c) 2014年 Y.X. All rights reserved.
//#import <UIKit/UIKit.h>
@interface TestView : UIView
@end
//// TestView.m// LayoutSubviews//// Copyright (c) 2014年 Y.X. All rights reserved.
//#import"TestView.h"
@implementation TestView
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self)
{
NSLog(@"initWithFrame:%@" ,NSStringFromCGRect(frame));
}
return self;
}
- (void)layoutSubviews
{
NSLog(@"layoutSubviews %@", self);
[super layoutSubviews];
}
@end
測試程式碼:
//// RootViewController.m//
LayoutSubviews//// Copyright (c) 2014年 Y.X. All rights reserved.//
#import"RootViewController.h"
#import"TestView.h"
@interface RootViewController ()
@property (nonatomic, strong) NSTimer *timer;
@property (nonatomic, strong) TestView *largeView;
@property (nonatomic, strong) TestView *smallView;
@end
@implementation RootViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// 1、init初始化不會觸發layoutSubviews [正確的]
// 2、addSubview會觸發layoutSubviews [不完全正確,當frame為0時是不會觸發的]
// 3、設定view的Frame會觸發layoutSubviews,當然前提是frame的值設定前後發生了變化 [正確]
// [self test_1];
// [self test_2];
// [self test_3];
// 4、滾動一個UIScrollView會觸發layoutSubviews[錯誤,不用滾動就會觸發]
// [self test_4];
// 5、改變一個UIView大小的時候也會觸發父UIView上的layoutSubviews事件
[self test_5];
}- (void)test_1
{
/*
解釋:
走了initWithFrame:方法,但是又有frame值為{{0, 0}, {0, 0}},並不需要繪製任何的東西,
所以即使新增了test,也沒必要繪製它,同時也驗證了addSubview會觸發layoutSubviews是錯
誤的,只有當被新增的view有著尺寸的時候才會觸發layoutSubviews
*/ TestView*test = [TestViewnew];
[self.view addSubview:test];
}
- (void)test_2
{
TestView *test = [TestViewnew];
test.frame= CGRectMake(0,0,100,100);
[self.view addSubview:test];
}
- (void)test_3
{
/* 解釋:
layoutSubviews這個方法自身無法呼叫,是被父類新增的時候才執行的方法
*/
TestView*test = [TestViewnew];
test.frame= CGRectMake(0,0,50,50);UIView *showView = [[UIView alloc] initWithFrame:CGRectMake(0,0,50,50)];
[test addSubview:showView];
}
- (void)test_4
{
CGRect rect = self.view.bounds;
CGFloat height= rect.size.height;
CGFloat width = rect.size.width;
UIScrollView*rootScroll = [[UIScrollView alloc] initWithFrame:self.view.bounds];
NSArray *data = @[@"",@"",@"",@""];
[data enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
TestView*tmp = [[TestView alloc] initWithFrame:CGRectMake(width*idx,0,
width, height)];
[rootScroll addSubview:tmp];
}];
rootScroll.contentSize = CGSizeMake(width * data.count, height);
[self.view addSubview:rootScroll];
}
- (void)test_5
{
_timer = [NSTimer scheduledTimerWithTimeInterval:1.f
target:self
selector:@selector(timerEvent:)
userInfo:nil
repeats:YES];
_largeView= [[TestView alloc] initWithFrame:self.view.bounds];
[self.view addSubview:_largeView];
_smallView= [[TestView alloc] initWithFrame:CGRectMake(0,0,100,100)];
[_largeView addSubview:_smallView];
}
- (void)timerEvent:(id)sender
{
_smallView.frame= CGRectMake(arc4random()%100 + 20,
arc4random()%100 + 20,
arc4random()%100 + 20,
arc4random()%100 + 20);
NSLog(@"_smallView %@", _smallView);
NSLog(@"_smallView %@", _largeView);
}
@end
測試後的結論是這樣子的:
1. 一個view是不能夠自己呼叫layoutSubviews,如果要呼叫,需要呼叫 setNeedsLayout或者 layoutIfNeeded
2. 如果view的frame值為0,即使被新增了耶不會呼叫layoutSubviews
3. 如果一個view的frame值改變了,那麼它的父類的layoutSubviews也會被執行
相關文章
- MYSQL索引失效的各種情況小結MySql索引
- java語言的各種輸入情況Java
- 什麼時候呼叫layoutSubviewsView
- ios layoutSubviews呼叫隨手筆記iOSView筆記
- 變數轉化為判斷條件時的各種情況變數
- vue日記②之相容各種情況的可跳轉連結Vue
- 直接理解轉置卷積(Transposed convolution)的各種情況卷積
- RabbitMQ如何解決各種情況下丟資料的問題MQ
- NoClassDefFoundError的兩種情況Error
- VC 各種情況下的視窗控制程式碼的獲取
- js引起記憶體洩露的幾種情況分析JS記憶體洩露
- 建構函式,拷貝賦值函式的N種呼叫情況函式賦值
- 產生遞迴呼叫 (Recursive Call 或 recursive SQL statements) 的幾種情況遞迴SQL
- switch不加break情況分析
- AWR收集緩慢、掛起的幾種常見情況分析
- layoutSubviewsView
- js中this指向有幾種情況JS
- 多種情況解析深複製
- 月結各模組關閉情況查詢SQLSQL
- 微服務呼叫中出現傳遞過來的物件為空的幾種情況微服務物件
- 資料庫事務併發問題----各種事務隔離下的情況資料庫
- if 判斷為 false 的 6 種情況False
- 深入分析幾種PHP獲取客戶端IP的情況轉PHP客戶端
- C++11各編譯器支援情況對比C++編譯
- 應用長時間未呼叫後再次呼叫出現hang的情況
- 各個瀏覽器對CSS標準各屬性支援的情況列表瀏覽器CSS
- Oracle 12.2中的索引統計被呼叫情況Oracle索引
- synchronized Lock(本地同步)鎖的8種情況synchronized
- SRAM的基礎模組存有三種情況
- MySQL必須flush privileges的兩種情況MySql
- consistent gets暴漲的一種情況
- [zt] Oracle不使用索引的幾種情況Oracle索引
- 流失原因分析方法6 版本消化情況分析法
- ORA-01654 索引 無法通過 擴充套件 2種情況分析索引套件
- js中bool值為false的幾種情況JSFalse
- JS獲取元素寬高的兩種情況JS
- Latex請問這種情況怎麼解決
- 個人學習系列 - @Transactional失效的3種情況