一郑藏、需求:列表左側(cè)滑顯示圖片(如下圖)
二衡查、使用UITableViewRowAction
1、使用的時(shí)候發(fā)現(xiàn)UITableViewRowAction并沒有辦法設(shè)置圖片必盖,這就比較扯了拌牲,感覺action應(yīng)該屬于一個(gè)button,于是便打開視圖控制器觀察這個(gè)控件子控件組成如下圖:
根據(jù)視圖看到是一個(gè)button很開心歌粥,于是便遍歷cell找這個(gè)子控件塌忽,竟然沒找到,難道圖層不對(duì)(開始懷疑人生)失驶,便接著找父控件如下圖:
結(jié)果找到了這個(gè)控件土居。于是便開心的遍歷這個(gè)父控件取出里面的子控件,這個(gè)子控件就是一個(gè)button,button可以做什么装盯?設(shè)置圖片?設(shè)置標(biāo)題甲馋?問題就這樣解決了埂奈。
三、ios11以下設(shè)置無效定躏。
what账磺?只支持ios11開玩笑,運(yùn)行程序痊远,打開圖層發(fā)現(xiàn)層級(jí)發(fā)生了變化下面是ios8-10的層級(jí):
iOS 8-10層級(jí): UITableView -> UITableViewCell -> UITableViewCellDeleteConfirmationView
找到層級(jí)就好解決了垮抗,接著遍歷解決問題。
四碧聪、最重要的來了冒版,上代碼,control c + control v的時(shí)候來了逞姿。
1辞嗡、添加手機(jī)系統(tǒng)對(duì)比宏
#define SYSTEM_VERSION_GRETER_THAN(v)? ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN(v)? ? ? ? ? ? ? ? ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
2、調(diào)用時(shí)機(jī)滞造,在下面的方法調(diào)用
- (void)viewDidLayoutSubviews{
? ? [super viewDidLayoutSubviews];
? ? [self configSwipeButtons];
}
當(dāng)然你還需要在tableview的delegate的方法中調(diào)用[self.view setNeedsLayout]续室,調(diào)用這個(gè)方法就會(huì)調(diào)用上面的方法,在剛開始編輯的時(shí)候調(diào)用
-(void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath*)indexPath{
?? ? [self.view setNeedsLayout];
}
3谒养、主要調(diào)用方法
- (void)configSwipeButtons
{
? ? // 獲取選項(xiàng)按鈕的reference
? ? if (SYSTEM_VERSION_GRETER_THAN(@"11.0"))
? ? {
? ? ? ? // iOS 11層級(jí) : UITableView -> UISwipeActionPullView
? ? ? ? for (UIView *subview in self.contentTableView.subviews)
? ? ? ? {
//這里寫大于等于2是因?yàn)槲疫@里需要兩個(gè)action
? ? ? ? ? ? if ([subview isKindOfClass:NSClassFromString(@"UISwipeActionPullView")] && [subview.subviews count] >= 2)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? // 和iOS 10的按鈕順序相反
? ? ? ? ? ? ? ? UIButton*deleteButton = subview.subviews[1];
? ? ? ? ? ? ? ? [deleteButtonsetImage:[UIImage imageNamed:@"PlayView_Share"] forState:UIControlStateNormal];
? ? ? ? ? ? ? ? UIButton*readButton = subview.subviews[0];
? ? ? ? ? ? ? ? [readButtonsetImage:[UIImage imageNamed:@"PlayView_Delete"] forState:UIControlStateNormal];
? ? ? ? ? ? }
? ? ? ? }
? ? }
? ? else
? ? {
? ? ? ? // iOS 8-10層級(jí): UITableView -> UITableViewCell -> UITableViewCellDeleteConfirmationView
? ? ? ? SABPlayListTableViewCell *tableCell = [self.contentTableView cellForRowAtIndexPath:self.indexPath];
? ? ? ? for(UIView*subviewintableCell.subviews)
? ? ? ? {
? ? ? ? ? ? if ([subview isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")] && [subview.subviews count] >= 2)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? UIButton*deleteButton = subview.subviews[0];
? ? ? ? ? ? ? ? [deleteButtonsetImage:[UIImage imageNamed:@"PlayView_Share"] forState:UIControlStateNormal];
? ? ? ? ? ? ? ? UIButton*readButton = subview.subviews[1];
? ? ? ? ? ? ? ? [readButtonsetImage:[UIImage imageNamed:@"PlayView_Delete"] forState:UIControlStateNormal];
? ? ? ? ? ? }
? ? ? ? }
? ? }
}