版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、繼續(xù)介紹一個(gè)有用的TableView中全選單元格的例子,里面的方法可以用在閱讀器中用 戶對(duì)閱讀內(nèi)容來源的選擇上,如圖所示:運(yùn)營高令全選運(yùn)營高宇取消核心代碼如下:objc view plaincopy1.2.3.4.5.6.-(void)viewDidLoadsuper viewDidLoad;/創(chuàng)建表視圖_table_table = UITableView allocinitWithFrame:CGRectMake(0, 64, 320, 500) s tyle:UITableViewStylePlain;7.8.9.10._table.delegate = self;_table.dataS
2、ource = self;self .view addSubview:_table;11.12.13.14./將字典NO- checked裝入可變數(shù)組中,來控制單元格左邊對(duì)勾視圖 _contacts = NSMutableArray array;for (int i = 0; i 10; i+) NSMutableDictionary *dic = NSMutableDictionary dictionary;15.16.17.18.19.20.21.22.23.24.25.1.2.3.4.5.6.dic setValue:NO forKey:checked;_contacts addObje
3、ct:dic;/創(chuàng)建屏幕左上方的全選按鈕_button = UIButton buttonWithType:UIButtonTypeRoundedRect;_button setTitle :全選forState:UIControlStateNormal;_button.frame = CGRectMake(10, 10, 100, 50);_button addTarget:self action:selector(allSelect:) forControlEvents:UIControlEventTouchUpInside;self.view addSubview:_button; ob
4、jc view plaincopy/全選按鈕的觸發(fā)事件-(void)allSelect:(UIButton*)sender將表視圖的所有的單元格放在數(shù)組里NSArray *anArrayOfIndexPath = NSArray arrayWithArray:_table indexPathsForVisibleRows;7.8.9.10.11.12.13.14.15.16.17.)18.19.20.21.22.23.24.25.26./27.ifh:indexPath;for (int i = 0; i anArrayOfIndexPath count; i+) /得到表視圖的indexPa
5、thNSIndexPath *indexPath= anArrayOfIndexPath objectAtIndex:i;/創(chuàng)建每個(gè)單元格,LTableViewCell *cell = (LTableViewCell*)_table cellForRowAtIndexPatNSUInteger row = indexPath row;NSMutableDictionary *dic = _contacts objectAtIndex:row;/判斷當(dāng)前按鈕的狀態(tài)是全選還是取消,設(shè)置不同的標(biāo)記if (UIButton*)sender titleLabel text isEqualToString
6、:全選dic setObject:伊YES forKey:checked;cell setChecked:YES;else dic setObject:伊NO forKey:checked;cell setChecked:NO;兩種狀態(tài)的切換(UIButton*)sender titleLabel text isEqualToString:全選)28.29.30.31.32.33.34.35.36.37.38.39.40.41.for (NSDictionary *dic in _contacts) dic setValue:YES forKey:checked; (UIButton*)sen
7、der setTitle:取消 forState:UIControlStateNormal;elsefor (NSDictionary *dic in _contacts) dic setValue:NO forKey:checked;(UIButton*)sender setTitle:全選forState:UIControlStateNormal; objc view plaincopy1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.22.-(UITableViewCell *)tableView:(UITableView *)t
8、ableView cellForRowAtIndexPat h:(NSIndexPath *)indexPathstatic NSString * identifier = Cell;/創(chuàng)建單元格LTableViewCell * cell = tableView dequeueReusableCellWithIdentifier:ide ntifier;if (cell = nil) cell = LTableViewCell allocinitWithStyle:UITableViewCellStyleDefa ult reuseIdentifier:identifier;NSUIntege
9、r row = indexPath row;NSMutableDictionary *dic = _contacts objectAtIndex:row;if (dic objectForKey:伊checked isEqualToString:NO) dic setObject:NO forKey:checked;cell setChecked:NO;else dic setObject:YES forKey:checked;cell setChecked:YES;return cell;23.objc view plaincopy1.2.3.4.5.-(void)tableView:(UI
10、TableView *)tableView didSelectRowAtIndexPath:(NSIndexP ath *)indexPathtableView deselectRowAtIndexPath:indexPath animated:YES;LTableViewCell *cell = (LTableViewCell*)tableView cellForRowAtIndexPath6.7.8.9.10.11.12.13.14.15.16.17.18.19.:indexPath;NSUInteger row = indexPath row;NSMutableDictionary *d
11、ic = _contacts objectAtIndex:row;/創(chuàng)建單元格左邊的打鉤視圖if (dic objectForKey:伊checked isEqualToString:NO) dic setObject:YES forKey:checked;cell setChecked:YES;else dic setObject:NO forKey:checked;cell setChecked:NO;在 LTableViewCell 中objc view plaincopy1.2.3.4.5.6.7.8.5.09.10.11./用checked來判斷是否加上對(duì)勾視圖-(void)setChecked:(BOOL)checkedif (checked)m_checkImageView.image = UIImage imageNamed:Selected.png;self.backgroundView.backgroundColor = UIColor colorWithRed:223.0/25 green:230.0/255.0 blue:250.0/255.0 alpha:1.0;else12.13.14.15.16.17.18.
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024網(wǎng)絡(luò)安全防護(hù)技術(shù)合同
- 二零二五年度綠色環(huán)保安置房交易合同范本3篇
- 2025年度能源項(xiàng)目居間合作合同范本3篇
- 2025年房屋交換與回遷協(xié)議3篇
- 2024版中外合資企業(yè)運(yùn)營管理合同書版B版
- 2024版政維護(hù)合同范本
- 中信證券2024年證券交易服務(wù)協(xié)議版A版
- 二零二五年度機(jī)場擴(kuò)建項(xiàng)目吊車租賃合同及吊機(jī)操作資質(zhì)要求3篇
- 事業(yè)單位2024版臨時(shí)聘用人員協(xié)議樣本版B版
- 二零二五年度專業(yè)攝影棚場地租賃服務(wù)協(xié)議2篇
- 老年人意外事件與與預(yù)防
- 預(yù)防艾滋病、梅毒和乙肝母嬰傳播轉(zhuǎn)介服務(wù)制度
- 集裝箱貨運(yùn)碼頭的火災(zāi)防范措施
- 《高速鐵路客運(yùn)安全與應(yīng)急處理》課程標(biāo)準(zhǔn)
- 七年級(jí)數(shù)學(xué)上冊專題1.14數(shù)軸與絕對(duì)值綜合問題大題專練(重難點(diǎn)培優(yōu))-【講練課堂】2022-2023學(xué)年七年級(jí)數(shù)學(xué)上冊尖子生同步培優(yōu)題典(原卷版)【人教版】
- 社會(huì)保險(xiǎn)職工增減表
- 小學(xué)語文低年級(jí)寫話 鴿子
- 仁愛英語八年級(jí)上冊詞匯練習(xí)題全冊
- 通用BIQS培訓(xùn)資料課件
- 報(bào)價(jià)單模板及范文(通用十二篇)
- 鈑金部品質(zhì)控制計(jì)劃
評(píng)論
0/150
提交評(píng)論