透明的UITableView

Posted liuw_flexi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了透明的UITableView相关的知识,希望对你有一定的参考价值。

 

//
//  ViewController.m
//  透明table
//
//  Created by LiuWei on 2018/4/23.
//  Copyright © 2018年 xxx. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>

@property(nonatomic,strong)UITableView *table;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    UIImageView *imgV = [[UIImageView alloc]initWithFrame:self.view.bounds];
    imgV.image = [UIImage imageNamed:@"005.jpg"];
    [self.view addSubview:imgV];
    
    UITableView *table = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
    table.delegate = self;
    table.dataSource = self;
    _table = table;
    _table.backgroundColor = [UIColor clearColor];

    [self.view addSubview:_table];
    
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 20;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cellID"];
    cell.textLabel.text = @"haha";
    cell.backgroundColor = [UIColor clearColor];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


@end

 

以上是关于透明的UITableView的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Swift 3 中使这个 UITableView 清晰(透明)

uitableview 中的 Uilabel 在调试模拟器颜色混合层中不显示不透明且不透明

分组 UITableView 的背景颜色在 iOS7 中不会透明

如何让 UITableView 透明

UITableView 顶部的透明视图

识别透明 UITableView 背后的手势