0201 ---背景 tableview
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0201 ---背景 tableview相关的知识,希望对你有一定的参考价值。
UIImageView *imageBim1 = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"jianbian5"]];
imageBim1.frame = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
[self.view addSubview:imageBim1];
[self makeTV];
}
-(void)makeTV
{
TvDataArray =[[NSMutableArray alloc]initWithArray:@[@"",@"我的订单",@"服务记录",@"送花记录",@"爱心捐助",@"常用银行卡",@"设置"]];
// _TV =[[UITableView alloc]initWithFrame:CGRectMake(0, 0,self.view.bounds.size.width, self.view.bounds.size.height) style:UITableViewStylePlain];0131
_TV =[[UITableView alloc]initWithFrame:CGRectMake(0, 64,self.view.bounds.size.width, self.view.bounds.size.height-64-49) style:UITableViewStylePlain];
//注:如果有tabbar的话 在减去49
_TV.dataSource= self;
_TV.delegate = self;
_TV.backgroundColor=[UIColor clearColor];
// _TVSatand.backgroundColor = [UIColor clearColor];// 这样才显示背景色
// _TVSatand.tableFooterView =[[UIView alloc]init];
// _TVSatand.separatorStyle = UITableViewCellSeparatorStyleNone;
_TV.tableFooterView =[[UIView alloc]init];
[self.view addSubview:_TV];
}
以上是关于0201 ---背景 tableview的主要内容,如果未能解决你的问题,请参考以下文章
CS0201:只有赋值、调用、递增、递减、等待和新对象表达式可以用作语句
错误 404:javax.servlet.UnavailableException:SRVE0201E:Servlet [org.glassfish.jersey.servlet.ServletCon
C#错误CS0201:只有赋值、调用、递增、递减和新对象表达式可以作为语句使用