需要的時(shí)候用:修改左滑出現(xiàn)的按鈕的格式

table:

- (NSArray*)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath {

NSString *titleContent = @"? ? ? ? ? ? ? ? ? ? ? ? ? ? ";

UITableViewRowAction *callAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:titleContent handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {

//? ? ? ? self.main_table.editing = NO;

}];

UITableViewRowAction *messageAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:titleContent handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {

//? ? ? ? self.main_table.editing = NO;

}];

return @[messageAction, callAction];

}


cell:

// 這種方法是重寫willTransitionToState這個(gè)方法,而不是重寫layoutSubviews方法事期,因?yàn)樵谧蠡藛问掌饋淼臅r(shí)候宠纯,背景圖片會(huì)有閃一下的bug

- (void)willTransitionToState:(UITableViewCellStateMask)state

{

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.001 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

[self setupSlideBtn];

});

}

// 設(shè)置左滑菜單按鈕的樣式

- (void)setupSlideBtn

{

// 判斷系統(tǒng)是否是iOS11及以上版本

if (@available(iOS 11.0, *)) {

for (UIView *subView in self.superview.subviews) {

if (![NSStringFromClass([subView class]) isEqualToString:@"UISwipeActionPullView"]) {

continue;

}

for (UIView *buttonViews in subView.subviews) {

if (![NSStringFromClass([buttonViews class]) isEqualToString:@"UISwipeActionStandardButton"]) {

continue;

}

// 修改備注

UIView *remarkContentView = subView.subviews[0];

[self setupRowActionView:remarkContentView imageName:@"b27_icon_star_yellow"];

// 刪除

UIView *deleteContentView = subView.subviews[1];

[self setupRowActionView:deleteContentView imageName:@"b27_icon_star_gray"];

}

}

} else {

// iOS11以下做法

for (UIView *subView in self.subviews) {

if(![subView isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")]) {

continue;

}

// SMS短訊

UIView *smsContentView = subView.subviews[0];

smsContentView.backgroundColor = BlueColor;

for (UIView *smsView in smsContentView.subviews) {

//移除界面所有子視圖? 注意區(qū)分視圖

[smsView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];

UIImageView *smsImage = [[UIImageView alloc] init];

smsImage.contentMode = UIViewContentModeScaleAspectFit;

smsImage.image = [UIImage imageNamed:@"b27_icon_star_yellow"];

CGFloat width = smsView.frame.size.width;

smsImage.frame = CGRectMake((width - 25) / 2, -15, 25, 25);

[smsView addSubview:smsImage];

// 文字

UILabel *sms = [self labelWithFrame:CGRectMake((width - 60) / 2, 40, 60, 20) text:@"哈哈哈哈哈" textColor:WhiteColor font:mainFontSize(14)];

sms.textAlignment = NSTextAlignmentCenter;

[smsView addSubview:sms];

}

// 訊息

UIView *messageContentView = subView.subviews[1];

messageContentView.backgroundColor = YellowColor;

for (UIView *messageView in messageContentView.subviews) {

[messageView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];

UIImageView *messageImage = [[UIImageView alloc] init];

messageImage.contentMode = UIViewContentModeScaleAspectFit;

messageImage.image = [UIImage imageNamed:@"message_selected"];

CGFloat width = messageView.frame.size.width;

messageImage.frame = CGRectMake((width - 25) / 2, -15, 25, 25);

[messageView addSubview:messageImage];

// 文字

UILabel *message = [self labelWithFrame:CGRectMake((width - 35) / 2, 40, 35, 20) text:@"噗噗噗噗" textColor:WhiteColor font:mainFontSize(14)];

message.textAlignment = NSTextAlignmentCenter;

[messageView addSubview:message];

}

}

}

}

// 設(shè)置背景圖片

- (void)setupRowActionView:(UIView *)rowActionView imageName:(NSString *)imageName

{

rowActionView.backgroundColor = mainColor;

UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imageName]];

[rowActionView insertSubview:imageView atIndex:0];

imageView.frame = CGRectMake(0, 0, 80, self.bounds.size.height);

}

-(UILabel*)labelWithFrame:(CGRect)rect text:(NSString *)text textColor:(UIColor*)color font:(UIFont*)font{

UILabel *label = [[UILabel alloc] initWithFrame:rect] ;

label.text = text;

label.textColor = color;

label.font = font;

return label;

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末拜英,一起剝皮案震驚了整個(gè)濱河市篱瞎,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌摊鸡,老刑警劉巖谴餐,帶你破解...
    沈念sama閱讀 212,294評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異但汞,居然都是意外死亡宿刮,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,493評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門私蕾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來僵缺,“玉大人,你說我怎么就攤上這事踩叭】某保” “怎么了?”我有些...
    開封第一講書人閱讀 157,790評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵容贝,是天一觀的道長(zhǎng)自脯。 經(jīng)常有香客問我,道長(zhǎng)斤富,這世上最難降的妖魔是什么膏潮? 我笑而不...
    開封第一講書人閱讀 56,595評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮满力,結(jié)果婚禮上焕参,老公的妹妹穿的比我還像新娘轻纪。我一直安慰自己,他們只是感情好叠纷,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,718評(píng)論 6 386
  • 文/花漫 我一把揭開白布刻帚。 她就那樣靜靜地躺著,像睡著了一般讲岁。 火紅的嫁衣襯著肌膚如雪我擂。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,906評(píng)論 1 290
  • 那天缓艳,我揣著相機(jī)與錄音校摩,去河邊找鬼。 笑死阶淘,一個(gè)胖子當(dāng)著我的面吹牛衙吩,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播溪窒,決...
    沈念sama閱讀 39,053評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼坤塞,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了澈蚌?” 一聲冷哼從身側(cè)響起摹芙,我...
    開封第一講書人閱讀 37,797評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎宛瞄,沒想到半個(gè)月后浮禾,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,250評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡份汗,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,570評(píng)論 2 327
  • 正文 我和宋清朗相戀三年盈电,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片杯活。...
    茶點(diǎn)故事閱讀 38,711評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡匆帚,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出旁钧,到底是詐尸還是另有隱情吸重,我是刑警寧澤,帶...
    沈念sama閱讀 34,388評(píng)論 4 332
  • 正文 年R本政府宣布歪今,位于F島的核電站晤锹,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏彤委。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,018評(píng)論 3 316
  • 文/蒙蒙 一或衡、第九天 我趴在偏房一處隱蔽的房頂上張望焦影。 院中可真熱鬧车遂,春花似錦、人聲如沸斯辰。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,796評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)彬呻。三九已至衣陶,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間闸氮,已是汗流浹背剪况。 一陣腳步聲響...
    開封第一講書人閱讀 32,023評(píng)論 1 266
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蒲跨,地道東北人译断。 一個(gè)月前我還...
    沈念sama閱讀 46,461評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像或悲,于是被迫代替她去往敵國(guó)和親孙咪。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,595評(píng)論 2 350