UITableView侧滑效果上面文字下面图片的效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UITableView侧滑效果上面文字下面图片的效果相关的知识,希望对你有一定的参考价值。
//自定义TableviewCell
#import "OrderViewCell.h"
#import "Masonry.h"
@implementation OrderViewCell
-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self)
{
}
return self;
}
//cell上面view
-(void)layoutSubviews{
[super layoutSubviews];
[self modifiDeleteBtn];
}
//实现上面文字下面图片
-(void)modifiDeleteBtn{
for (UIView *subView in self.subviews)
{
if ([subView isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")]){
//确认订单
UIView *confirmationView = subView.subviews[3];
confirmationView.backgroundColor = [UIColor colorWithRed:164/255.0 green:225/255.0 blue:225/255.0 alpha:1.0];
for (UIView *view in confirmationView.subviews) {
UIImageView *deleteImage = [[UIImageView alloc] init];
deleteImage.contentMode = UIViewContentModeScaleAspectFit;
deleteImage.image = [UIImage imageNamed:@"confirmOrder"];
deleteImage.frame = CGRectMake(5, -10, 20, 20);
[view addSubview:deleteImage];
UIButton *oneBtn = [UIButton buttonWithType:UIButtonTypeCustom];
oneBtn.frame = CGRectMake(-25, 5, 80, 30);
[oneBtn setTitle:@"确认订单" forState:UIControlStateNormal];
oneBtn.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:10];
[view addSubview:oneBtn];
}
}
}
以上是关于UITableView侧滑效果上面文字下面图片的效果的主要内容,如果未能解决你的问题,请参考以下文章
css 如何让图片位于文字的下方,文字在上面 图片在文字的下面(图片是一张虚线)而文字右边又有一张图片