IOS之UIView的tag學習

来源:http://www.cnblogs.com/ieso-ios/archive/2016/01/08/5114416.html
-Advertisement-
Play Games

tag是UIView的一個屬性,而且要求tag值唯一。父視圖可以通過tag來找到一個子視圖1 UIView *redView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.window.frame), ...


tag是UIView的一個屬性,而且要求tag值唯一。父視圖可以通過tag來找到一個子視圖

1     UIView *redView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
2     redView.backgroundColor = [UIColor redColor];
3     redView.tag = 1000;
4 [self.window addSubview:redView];
5 
6 UIView *getView = [self.window viewWithTag:1000];
tag用法

下麵來看下幾種需要註意的錯誤示例

由於示例代碼有點多,怕麻煩的童鞋可以跳到最後的結論部分(最好把錯誤示例4的代碼看一下)

一,view下有tag值相同的兩個subview

 1     UIView *redView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 2     redView.backgroundColor = [UIColor redColor];
 3     redView.tag = 1000;
 4     
 5     UIView *yellowView = [[UIView alloc]initWithFrame:CGRectMake(0, CGRectGetHeight(self.window.frame)/2, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 6     yellowView.backgroundColor = [UIColor yellowColor];
 7     yellowView.tag = 1000;
 8 
 9     [self.window addSubview:yellowView];
10     [self.window addSubview:redView];
11     
12     UIView *getView = [self.window viewWithTag:1000];
13     [getView setBackgroundColor:[UIColor whiteColor]];
錯誤示例1

結果是yellowView的背景被改變了,說明這種情況下會取得父視圖載入的第一個tag是1000的子視圖。

 

二,父視圖取得子視圖的子視圖。

 1     UIView *redView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 2     redView.backgroundColor = [UIColor redColor];
 3     redView.tag = 1000;
 4     
 5     UIView *yellowView = [[UIView alloc]initWithFrame:CGRectMake(0, CGRectGetHeight(self.window.frame)/2, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 6     yellowView.backgroundColor = [UIColor yellowColor];
 7     yellowView.tag = 1001;
 8     
 9     UIView *blueView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
10     blueView.backgroundColor = [UIColor blueColor];
11     blueView.tag = 1002;
12     
13     UIView *greenView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
14     greenView.backgroundColor = [UIColor greenColor];
15     greenView.tag = 1003;
16     
17     [redView addSubview:blueView];
18     [yellowView addSubview:greenView];
19     
20     
21     [self.window addSubview:yellowView];
22     [self.window addSubview:redView];
23     
24     UIView *getView = [self.window viewWithTag:1003];
25     [getView setBackgroundColor:[UIColor whiteColor]];
示例2

結果是greenView背景被改變了,說明這個是可行的。

 

三,取存在但不是自己子視圖的視圖

將示例2中的倒數第二句代碼改為   

UIView *getView = [redView viewWithTag:1003];

結果是greenView的背景沒有被改變,說明這是行不通的。

 

四,別的視圖中的子視圖和本視圖的子視圖有相同的tag值

 1     UIView *redView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 2     redView.backgroundColor = [UIColor redColor];
 3     redView.tag = 1000;
 4     
 5     UIView *yellowView = [[UIView alloc]initWithFrame:CGRectMake(0, CGRectGetHeight(self.window.frame)/2, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 6     yellowView.backgroundColor = [UIColor yellowColor];
 7     yellowView.tag = 1001;
 8     
 9     UIView *blueView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
10     blueView.backgroundColor = [UIColor blueColor];
11     blueView.tag = 1002;
12     
13     UIView *greenView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
14     greenView.backgroundColor = [UIColor greenColor];
15     greenView.tag = 1002;
16     
17     [redView addSubview:blueView];
18     [yellowView addSubview:greenView];
19     
20     
21     [self.window addSubview:yellowView];
22     [self.window addSubview:redView];
23     
24     UIView *getView = [redView viewWithTag:1002];
25     [getView setBackgroundColor:[UIColor whiteColor]];
錯誤示例3

結果來看還可以

 

五,greenView和redView的tag值相同

 1     UIView *redView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 2     redView.backgroundColor = [UIColor redColor];
 3     redView.tag = 1000;
 4     
 5     UIView *yellowView = [[UIView alloc]initWithFrame:CGRectMake(0, CGRectGetHeight(self.window.frame)/2, CGRectGetWidth(self.window.frame), CGRectGetHeight(self.window.frame)/2)];
 6     yellowView.backgroundColor = [UIColor yellowColor];
 7     yellowView.tag = 1001;
 8     
 9     UIView *blueView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
10     blueView.backgroundColor = [UIColor blueColor];
11     blueView.tag = 1002;
12     
13     UIView *greenView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)];
14     greenView.backgroundColor = [UIColor greenColor];
15     greenView.tag = 1000;
16     
17     [redView addSubview:blueView];
18     [yellowView addSubview:greenView];
19     
20     
21     [self.window addSubview:yellowView];
22     [self.window addSubview:redView];
23     
24     UIView *getView = [self.window viewWithTag:1000];
25     [getView setBackgroundColor:[UIColor whiteColor]];
錯誤示例4

結果是greenView的背景色被改變了

 

最後說一下結論

由以上的代碼可以推出,父視圖通過tag取得子視圖的順序是深度優先,也就是先查看自己的第一個子視圖,然後查看第一個子視圖的所有子視圖

tag值,直到第一個子視圖下的所有子視圖搜索完,再搜索自己第二個子視圖直到找到為止。找不到就返回nil

 

當然,最穩妥的方法還是確保tag值的唯一

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、安裝MySql1.解壓版安裝下載地址:http://dev.mysql.com/downloads/mysql/安裝及配置教程:http://jingyan.baidu.com/article/f3ad7d0ffc061a09c3345bf0.html (百度經驗)2.安裝版安裝下載地址:htt...
  • SQL 語句日期用法及函數--DAY()、MONTH()、YEAR()——返回指定日期的天數、月數、年數;select day(cl_s_time) as '日' from class--返回天select '月'=month(cl_s_time) from class--返回月select '年'...
  • 在OC的UI中,一些常用的控制項如UIImageView,UILabel等預設是沒有交互的,就是在控制項上點擊,雙擊或者滑動等操作是沒有效果的。下麵的方法較為完美的解決了控制項的交互問題:(以UIImageView為例,其他控制項類似)首先,創建一個UIImageView:UIImageView *imag...
  • 不小心在開發過程中,得到了(null)以及的返回值,找了好長時間只找到了一個關於的。由於要根據返回值進行判斷,做出必要反應,因此必須知道返回值所代表的具體字元,在得到(null)後利用isEqual:和@“”,NULL,@“(null)”,nil,Nil比較後均得不到正確結果,弄得不知所措了,但是還...
  • 讓你像使用普通按鈕一樣,只用設置倒計時時長就可以實現倒計時功能
  • 準備數據 首先先加入一些資源文件:先建立一個xcassets文件,放入圖片:再建立一個plist文件,寫入與圖片對應的內容:在ViewController中讀取plist到詞典中:
  • ToggleButton(開關按鈕)和Switch(開關)講解:一、核心屬性講解:(1)ToggleButtontextOn:按鈕被選中的時候文字顯示textOff:按鈕沒有被選中的時候文字顯示(2)switch:showText:設置textOn/off的時候文字是否顯示android:showT...
  • 初學android,捧著一本書,第一個接觸的就是adb,在android路上...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...