`
ytwhw
  • 浏览: 97948 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

IOS之UITableView详解

阅读更多
一、建立 UITableView
    UITableView *tabYwKPI = [[UITableView alloc]initWithFrame:CGRectMake(0, 100, 320, 366)];
    tabYwKPI.separatorColor = [[UIColor alloc] initWithRed:0.8 green:0.8 blue:0.8 alpha:1];
    tabYwKPI.tag=100;
    tabYwKPI.scrollEnabled = YES;
    tabYwKPI.dataSource = self;
    tabYwKPI.delegate = self;
    tabYwKPI.rowHeight = 60;
    [self.view addSubview:tabYwKPI];
   [tabYwKPIrelease];
二、UITableView数据重新加载
[tabYwKPI reloadData];
三、UITableView各Method说明
//Section总数
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
return TitleData;
}
// Section Titles
//每个section显示的标题
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
return @"";
}
//指定有多少个分区(Section),默认为1
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 4;
}
//指定每个分区中有多少行,默认为1
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
}
//绘制Cell
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
SimpleTableIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier: SimpleTableIdentifier] autorelease];
}
cell.imageView.image=image;//未选cell时的图片
cell.imageView.highlightedImage=highlightImage;//选中cell后的图片
cell.text=//.....
return cell;
}
//行缩进
-(NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{
NSUInteger row = [indexPath row];
return row;
}
//改变行的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 40;
}
//定位
[TopicsTable setContentOffset:CGPointMake(0, promiseNum * 44 + Chapter * 20)];
//返回当前所选cell
NSIndexPath *ip = [NSIndexPath indexPathForRow:row inSection:section];
[TopicsTable selectRowAtIndexPath:ip animated:YES scrollPosition:UITableViewScrollPositionNone];
[tableView setSeparatorStyle:UITableViewCellSelectionStyleNone];
//选中Cell响应事件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
[tableView deselectRowAtIndexPath:indexPath animated:YES];//选中后的反显颜色即刻消失
}
//判断选中的行(阻止选中第一行)
-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger row = [indexPath row];
if (row == 0)
return nil;
return indexPath;
}
//划动cell是否出现del按钮
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
}
//编辑状态
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath
{
}
[topicsTable setContentSize:CGSizeMake(0,controller.promiseNum * 44)];
//右侧添加一个索引表
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
}
//返回Section标题内容
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
}
//自定义划动时del按钮内容
- (NSString *)tableView:(UITableView *)tableView
titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
//跳到指的row or section
[tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:NO];
四、在UITableViewCell上建立UILable多行显示
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
UILabel *Datalabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 320, 44)];
[Datalabel setTag:100];
Datalabel.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
[cell.contentView addSubview:Datalabel];
[Datalabel release];
}
UILabel *Datalabel = (UILabel *)[cell.contentView viewWithTag:100];
[Datalabel setFont:[UIFont boldSystemFontOfSize:18]];
Datalabel.text = [data.DataArray objectAtIndex:indexPath.row];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
//选中cell时的颜色
typedef enum {
UITableViewCellSelectionStyleNone,
UITableViewCellSelectionStyleBlue,
UITableViewCellSelectionStyleGray
} UITableViewCellSelectionStyle
//cell右边按钮格式
typedef enum {
UITableViewCellAccessoryNone, // don't show any accessory view
UITableViewCellAccessoryDisclosureIndicator, // regular chevron. doesn't track
UITableViewCellAccessoryDetailDisclosureButton, // blue button w/ chevron. tracks
UITableViewCellAccessoryCheckmark // checkmark. doesn't track
} UITableViewCellAccessoryType
//是否加换行线
typedef enum {
UITableViewCellSeparatorStyleNone,
UITableViewCellSeparatorStyleSingleLine
} UITableViewCellSeparatorStyle//改变换行线颜色
tableView.separatorColor = [UIColor blueColor];
五、在UITableView标记选中行(多行选中)
//选中Cell响应事件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
//获取选中的UITableViewCell
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
//判断UITableViewCell 选中状态
        if(cell.accessoryType == UITableViewCellAccessoryNone){
//没被选中,标记
            cell.accessoryType = UITableViewCellAccessoryCheckmark;
//加入选中行数组中,记录选中记录
            [self.selectWys addObject:[self.initCitys objectAtIndex:indexPath.row]];
        }else{
//被选中则去除标记
            cell.accessoryType = UITableViewCellAccessoryNone;
//从选中行数组中移除选中记录
            [self.selectWys removeObject:[self.initCitys objectAtIndex:indexPath.row]];
        }
        [tableView deselectRowAtIndexPath:indexPath animated:YES];//选中后的反显颜色即刻消失
}
选中行标记后,由于UITableView中cell每次在UITableView中显示的时候都会调用cellForRowAtIndexPath方法进行重绘,所以在执行cellForRowAtIndexPath时需要判断cell的选中状态,否则会出现cell已经被选中,但是向上或下拖动出视线范围之外后,重新拖动到显示区域显示时选中标记会消失的问题。cellForRowAtIndexPath中加入判断代码如下:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdetify = @"cell";
    UITableViewCell *tvCell = [[[UITableViewCell alloc]initWithFrame:CGRectZero reuseIdentifier:cellIdetify]autorelease];
        tvCell.selectionStyle = UITableViewCellSelectionStyleGray;
UILabel *lbCity = [[UILabel alloc]initWithFrame:CGRectMake(30, 0, 80, 40)];
        [lbCity setBackgroundColor:[UIColor clearColor]];
        [lbCity setText:[self.initCitys objectAtIndex:indexPath.row]];
        [lbCity setFont:[UIFont systemFontOfSize:16.0f]];
        //判断要显示的数据是否被选中
        if ([self.selectWys containsObject:[self.initCitys objectAtIndex:indexPath.row]]) {
            tvCell.accessoryType = UITableViewCellAccessoryCheckmark;
        }
        else
        {
            tvCell.accessoryType = UITableViewCellAccessoryNone;
        }
        [tvCell addSubview:lbCity];
 }

 

分享到:
评论
1 楼 cillyfly 2015-07-13  
想问问
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
如果sectiontitle的内容过多 如何让他换行呢?

相关推荐

    UITableView、UITableView基本用法、UITableView详解

    iOS 开发中 UITableView 的使用详解 UITableView 是 iOS 开发中最常用的控件之一,用于显示列表数据。它类似于 Android 中的 ListView,都是用于显示列表数据的控件。在 iOS 开发中,UITableView 是一个非常重要的...

    详解iOS App中UITableView的创建与内容刷新

    UITableView几乎是iOS开发中用处最广的一个控件,当然也是要记相当多东西的一个控件。 创建 首先创建一个新的项目,并添加一个MainViewController的Class文件 打开MainViewController.h文件 @interface ...

    iOS开发之UITableView详解

    在iOS应用开发中,UITableView是不可或缺的一个组件,它主要用于展示列表型的数据,用户可以通过滚动查看更多的内容。在本文中,我们将深入探讨UITableView的基本结构、数据源(UITableViewDataSource)以及代理...

    iphone UITableView详解 带实例 例子

    ### IPhone之UITableView详解 #### 一、前言 UITableView 是 iOS 开发中非常重要的一个控件,用于显示数据列表。相比于 UIButton 等简单控件,UITableView 的使用较为复杂,涉及较多的概念与方法。本文将详细介绍 ...

    UITableView 详细讲解.

    UITableView 详细讲解

    UITableView详解

    删除单元格是UITableView常见的操作之一。你可以通过实现`tableView:commitEditingStyle:forRowAtIndexPath:`方法来处理删除请求。当用户轻扫单元格并选择“删除”时,此方法会被调用。在这个方法中,你需要更新数据...

    ios uitableview cell的展开收缩功能

    以上就是关于"ios uitableview cell的展开收缩功能"的知识点详解,涵盖从数据源设计、界面定制到实际操作的完整流程。在实际开发中,这个功能可以根据需求进行各种定制,以适应不同场景下的用户体验需求。

    IOS UITableView和NavigationBar的常用设置详解

    在iOS开发中,UITableView和UINavigationController的NavigationBar是两个非常重要的组件。它们被广泛用于构建用户界面,特别是当需要展示列表数据或在应用中导航时。接下来我们将深入探讨这两个组件的常用设置。 ...

    iOS UITableView 与 UITableViewController实例详解

    在iOS开发中,UITableView是展示数据列表的关键组件,它允许用户滚动查看并交互大量信息。而UITableViewController则是专门为了管理UITableView而设计的视图控制器,它整合了数据源和委托的功能,简化了列表的实现...

    iOS自定义UITableView实现不同系统下的左滑删除功能详解

    在iOS应用开发中,UITableView是常用的视图组件,用于展示列表数据。对于用户交互,左滑删除功能是一项常见的需求,特别是在处理大量可操作的数据时。本文将深入探讨如何自定义UITableView,以实现在不同iOS系统版本...

    IOS UITableView颜色设置的实例详解

    在iOS开发中,UITableView是展示列表数据的重要组件。在设计用户界面时,调整UITableView的颜色能够极大地影响用户体验。本文将深入探讨如何在iOS中为UITableView设置各种颜色,包括默认颜色、自定义颜色、背景颜色...

    IOS UICollectionView布局详解

    UICollectionViewFlowLayout是默认布局,类似于UITableView的滚动方式,而UICollectionViewGridLayout则创建一个网格布局。 要创建自定义布局,你需要继承UICollectionViewLayout,并覆盖其关键方法。如`prepare()`...

    iOS 代理详解Demo

    在iOS开发中,协议(Protocol)和代理(Delegate)是两个至关重要的概念,它们构成了对象间通信的基础。...通过"iOS 代理详解Demo"的学习,开发者可以更好地掌握如何运用这些机制来构建高效、可扩展的应用程序。

    iOS中PNChart与UITableView的联动示例详解

    本文将深入探讨如何在iOS项目中实现PNChart与UITableView之间的联动效果,以便更好地展示和操作数据。 首先,当用户点击PNChart中的某一部分时,我们希望对应的UITableView单元格被高亮显示。PNChart提供了`...

    iOS成长之路2017夏v1.0

    ### iOS成长之路2017夏v1.0 #### 知识点概述 该文档似乎是一份关于iOS开发的学习资料汇总,涉及了多个方面的内容和技术。接下来,我们将详细探讨这些知识点。 ### 1. LLVM **知识点详解:** - **LLVM (Low Level...

    详解iOS开发中UITableview cell 顶部空白的多种设置方法

    在iOS开发中,`UITableView` 是一个非常常用且重要的组件,用于展示列表数据。然而,在实际开发过程中,我们经常会遇到`UITableViewCell`顶部出现空白的问题,这可能会对用户体验造成不良影响。本文将详细介绍几种...

Global site tag (gtag.js) - Google Analytics