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];

}

时间: 2024-10-07 12:51:55

0201 ---背景 tableview的相关文章

iOS_25_彩票设置的cell的数据源模型的封装

组模型的封装 SettingGroup // // SettingGroup.h // 25_彩票 // // Created by beyond on 14-8-28. // Copyright (c) 2014年 com.beyond. All rights reserved. // 模型,一组(Section,Group),包括 组的header,组的footer,中间的条目(cell数组) #import <Foundation/Foundation.h> @interface Set

tableView背景

iPhone SDK提供了默认的几个TableView样式,但是如果想提供更个性化的样式就需要自己定义. 比如添加背景 其实自定义table view的样子很简单,无非就是把table view和table view cell的背景变成透明的,然后在指定视图和cell的背景图片(当然,也可以指定table view的背景图片)   @interface MainViewController : UIViewController <UITableViewDelegate, UITableViewD

tableView和tableViewCell的背景颜色问题

当在tableView中添加cell数据时,我们会发现原本设置的tableView的背景颜色不见了,这是因为加载cell数据时,tableView的背景颜色被cell数据遮盖住了,此时,可以通过设置cell的背景颜色,从而使得界面的背景有颜色 - (void)viewDidLoad { [super viewDidLoad]; //此时不会显示在用户眼前 self.view.backgroundColor = [UIColor blueColor]; } #pragma mark - <UITa

设置 tableview 的背景 颜色 和清空

表示图中Cell默认是不透明的,那么在设置表示图的背景颜色和图片时通常是看不到的 1.给tableView设置背景view UIImageView *backImageView=[[UIImageViewalloc]initWithFrame:self.view.bounds]; [backImageView setImage:[UIImage imageNamed:@"liaotianbeijing"]]; self.tableView.backgroundView=backImag

设置tableview的背景图片(被坑过)

[self.tableView setBackgroundView:bgImageView]; 坑死我 弄了好久

tableView 背景

////  JZLBaseTableView.h//  JZLIntegrationDemo////  Created by 微指 on 15/3/16.//  Copyright (c) 2015年 JZL. All rights reserved.// /* #import <UIKit/UIKit.h> #import "JZLBackgroundView.h" @interface JZLBaseTableView : UITableView - (void)add

IOS TableView 去除点击后产生的灰色背景

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"activityTableViewCell"; activityTableViewCell *cell = (activityTableViewCell *)[tableView dequeueReusabl

修改tableview的索引页的背景,字体颜色,字体点中的颜色

mainTableView.sectionIndexBackgroundColor = [UIColor greenColor];//修改右边索引的背景色// mainTableView.sectionIndexColor = [UIColor orangeColor];//修改右边索引字体的颜色// mainTableView.sectionIndexTrackingBackgroundColor = [UIColor orangeColor];//修改右边索引点击时候的背景色

设置tableView背景颜色

[treeTableView setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight]; [treeTableView setBackgroundColor:[UIColor blueColor] /*#fff9f4*/]; [treeTableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine]; [tree