先說下咱們的需求,在一個 tableView 中,左滑刪除某個 cell 時,須要展現以下圖所示的樣式,淺灰色
底色,橘紅色
文字。 字體
修改刪除按鈕的文字很簡單,只須要實現下面的方法:ui
//修改編輯按鈕文字
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
return @"Delete";
}
複製代碼
首先我按照常規的在 editActionsForRowAtIndexPath
方法中處理:spa
- (NSArray*)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(nonnull NSIndexPath *)indexPath {
// delete action
UITableViewRowAction *deleteAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleNormal title:@"Delete" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
}];
deleteAction.backgroundColor = [UIColor colorWithHexString:Color_F7F7F7];
return @[deleteAction];
}
複製代碼
但發現只能經過 deleteAction.backgroundColor
改變背景顏色,卻沒法改變字體顏色。 而系統提供的幾種 UITableViewRowActionStyle
也不符合個人需求:code
typedef NS_ENUM(NSInteger, UITableViewRowActionStyle) {
UITableViewRowActionStyleDefault = 0,
UITableViewRowActionStyleDestructive = UITableViewRowActionStyleDefault,
UITableViewRowActionStyleNormal
}
複製代碼
默認 UITableViewRowActionStyleDefault
的樣子:orm
UITableViewRowActionStyleNormal
的樣子:cdn
解決辦法有我從網上找來的,最新的 iOS12 的則是我本身試驗出來的。解決辦法也會隨着 iOS 系統的升級而發生變化,由於系統控件的結構可能會發生變化,致使遍歷不出要找到的視圖。blog
iOS11 之前的處理方式是遍歷 Cell 的 subViews 子視圖找到 UITableViewCellDeleteConfirmationView
,只需在 Cell 的 .m 文件中添加 layoutSubviews
代碼:ip
- (void)layoutSubviews {
[super layoutSubviews];
for (UIView *subView in self.subviews) {
if ([NSStringFromClass([subView class]) isEqualToString:@"UITableViewCellDeleteConfirmationView"]) {
UIButton *bgView = (UIButton *)[subView.subviews firstObject];
bgView.backgroundColor = [UIColor colorWithHexString:Color_F0F0F0];
[bgView setTitleColor:[UIColor colorWithHexString:Color_MainColor] forState:UIControlStateNormal];
}
}
}
複製代碼
這個系統版本須要在 tableView 中添加 layoutSubviews
,我是寫了一個 tableView 的父類,在父類的 .m 中添加了 layoutSubviews
。同時我還在 tableView 的 .h 中聲明一個 cellHeightRef 來修改刪除 Button 的高度。string
- 簡單來講就是在 tableView 的 subviews 中遍歷出
UISwipeActionPullView
,再從UISwipeActionPullView
中遍歷出UISwipeActionStandardButton
。再修改 button 的樣式便可。
- (void)layoutSubviews {
[super layoutSubviews];
for (UIView *subview in self.subviews) {
if ([subview isKindOfClass:NSClassFromString(@"UISwipeActionPullView")]) {
//修改背景顏色
subview.backgroundColor = [UIColor clearColor];
//修改按鈕-顏色
UIButton *swipeActionStandardBtn = subview.subviews[0];
if ([swipeActionStandardBtn isKindOfClass:NSClassFromString(@"UISwipeActionStandardButton")]) {
CGFloat swipeActionStandardBtnOX = swipeActionStandardBtn.frame.origin.x;
CGFloat swipeActionStandardBtnW = swipeActionStandardBtn.frame.size.width;
swipeActionStandardBtn.frame = CGRectMake(swipeActionStandardBtnOX, 0, swipeActionStandardBtnW, self.cellHeightRef - 10);
[swipeActionStandardBtn setTitleColor:[UIColor colorWithHexString:Color_MainColor] forState:UIControlStateNormal];
[swipeActionStandardBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateHighlighted];
[swipeActionStandardBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateSelected];
}
}
}
}
複製代碼
iOS 13 中和上面的 iOS 13 以前的方法幾乎同樣,只不過是 tableView 內部的父子視圖關係發生了變化, UISwipeActionStandardButton
位置變了。即原來把 subView 改成了 subview.subviews.firstObject,才能獲得 UISwipeActionStandardButton
。it
- (void)layoutSubviews {
[super layoutSubviews];
for (UIView *subview in self.subviews) {
if ([subview.subviews.firstObject isKindOfClass:NSClassFromString(@"UISwipeActionPullView")]) {
//修改背景顏色
subview.subviews.firstObject.backgroundColor = [UIColor clearColor];
//修改按鈕-顏色
UIButton *swipeActionStandardBtn = subview.subviews.firstObject.subviews[0];
if ([swipeActionStandardBtn isKindOfClass:NSClassFromString(@"UISwipeActionStandardButton")]) {
CGFloat swipeActionStandardBtnOX = swipeActionStandardBtn.frame.origin.x;
CGFloat swipeActionStandardBtnW = swipeActionStandardBtn.frame.size.width;
swipeActionStandardBtn.frame = CGRectMake(swipeActionStandardBtnOX, 0, swipeActionStandardBtnW, self.cellHeightRef - 10);
[swipeActionStandardBtn setTitleColor:[UIColor colorWithHexString:Color_MainColor] forState:UIControlStateNormal];
[swipeActionStandardBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateHighlighted];
[swipeActionStandardBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateSelected];
}
}
}
}
複製代碼