iOS基礎-進階視圖-UITableView--執行個體:app管理

來源:互聯網
上載者:User

標籤:

不利用xib而是利用storyboard裡的預設動態cell來描述自訂cell
一、在第三個資料來源方法中載入cell
{
MJAppCell *cell = [tableView dequeueReusableCellWithIdentifier:@"app"];
//將模型資料傳給cell的時候會調用set方法,在set方法中覆蓋按鈕的資料和狀態即可
cell.app = self.apps[indexPath.row];
return cell;
}
PS:一個TableView可以備份多種類型的cell,到時候只需要根據不同標識載入cell即可
二、在MJAppCell.h中添加模型資料屬性並重寫set方法
//這個MJApp是事先準備好直接拖過來的,裡面有app的icon,name,size,
download屬性。
@property(nonatomic,strong)MJApp *app;
//在set方法中將app的這些屬性賦值給cell的相應控制項。
-(void)setApp:(MJApp *)app
{
_app = app;
self.iconView.image = [UIImage imageNamed:app.icon];
self.nameView.text = app.name;
self.introView.text = [NSString stringWithFormat:@" 大小: %@ | 下載量:%
@",app.size,app.download];
}

三、點擊下載按鈕後顯示已下載,並且按鈕不能再被點擊
1.將Disabled時的文字設定為已下載
2.在MJApp模型中添加一條屬性
@property(nonatomic,assign,getter = isDownloaded)BOOL downloaded;
3.監聽下載按鈕並實現方法
//點擊了下載按鈕
-(IBAction)downloadClick:(UIButton *)btn{
//讓按鈕失效
self.app.downloaded = YES;
btn.enabled = NO;

//2.通知代理
}
4.拿到下載按鈕(Outlet),在set方法中覆蓋按鈕的狀態
-(void)setApp:(MJApp *)app
{
......
// 覆蓋按鈕的狀態
self.downloadView.enabled = (self.app.isDownloaded == NO);
}
5.添加一個下載成功的提示
1>定義協議
@protocol MJAppCellDelegate <NSObject>
@optional
-(void)appCellDidClickedDownloadBtn:(MJAppCell *)cell;
@end
2>遵守協議
@property (nonatomic,weak) id<MJAppCellDelegate> delegate;
3>在下載按鈕的方法中通知代理按鈕被點擊了
-(IBAction)downloadClick:(UIButton *)btn{
....
//2.通知代理
if([self.delegate respondsToSelector:@selector
(appCellDidClickedDownloadBtn:)]){
[self.delegate appCellDidClickedDownloadBtn:self];
}
}
4>在第三個資料來源方法中將控制器設定為代理,並讓控制器遵守代理協議
5>實現cell 的代理方法

PS:什麼時候用代理呢?
當一個View內部發生了一些事情,想告訴控制器的時候

iOS基礎-進階視圖-UITableView--執行個體:app管理

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.