- 浏览: 97948 次
- 性别:
- 来自: 济南
最新评论
-
cillyfly:
想问问 - (NSString *)tableView:(UI ...
IOS之UITableView详解 -
sdfiyon:
不错。。。。。
IOS应用开发版本控制工具之Versions使用 -
吃饱了就饿:
说不定以后能用到
IOS 检测设备晃动 -
吃饱了就饿:
不错啊,很清晰,学习学习
IOS之UILabel显示内容自动换行
一、建立 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的内容过多 如何让他换行呢?
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
如果sectiontitle的内容过多 如何让他换行呢?
发表评论
-
IOS 基于APNS消息推送原理与实现(JAVA后台)
2013-12-31 10:03 4047Push的原理: Push 的工作机制可以简单的概括为下 ... -
【转】nonatomic, retain,weak,strong用法详解
2013-01-15 14:41 1387http://blog.csdn.net/dong_007_ ... -
【转】iPhone/Mac Objective-C内存管理教程和原理剖析
2013-01-15 11:47 1062文章转自:http://www.coc ... -
IOS应用开发之自动旋转与调整大小
2013-01-10 14:40 1265苹果的产品iPad和iPhone都是支持自动旋转的,因 ... -
ASIHTTPRequest开源类项目导入问题及解决方法
2013-01-06 16:07 1953ASIHTTPRequest 为ASIHTTPRequest开 ... -
关于“ARC forbids explicit message send of release”错误
2013-01-05 16:36 1396如果你在进行release,retain相关操作的 ... -
IOS应用开发版本控制工具之Versions使用
2012-12-25 17:10 23176Versions版本控制工具破解版(Versions.zip) ... -
IOS中XML解析之libxml2
2012-12-20 13:14 2951IOS SDK自带的XML解析库 ... -
IOS设备滑动事件
2012-12-20 13:11 5634只要手指触摸屏幕,滑 ... -
IOS之JSON数据解析
2012-12-18 17:22 3200一、准备工作: 1、将SBJsonClasses 加入项目 ... -
IOS中XML解析之NSXMLParser
2012-12-18 17:21 4830NSXMLParser解析XML数据 用法如下: 一、首先, ... -
IOS手机端应用程序调用Servlet
2012-12-18 17:20 1458NSString *nstrWyKPIUrl =[[NSStr ... -
苹果开发中文站
2012-12-18 15:20 761苹果开发中文站:http://www.cocoachina. ... -
IOS之UILabel显示内容自动换行
2012-12-18 14:45 92661、UILabel内容自动换行 UIFont *fontNa ... -
IOS 检测设备晃动
2012-12-17 14:20 2126IOS 3.0 + 开始支持motion事件,检测设备摇动 ... -
IOS中NSUserDefaults的用法
2012-12-15 16:45 7064NSUserDefaults适合存储轻量级本地数据,比 ... -
IOS手机端应用程序调用WebService
2012-12-15 16:23 11413手机端IOS应用程序调用WebService(JAVA)代码 ...
相关推荐
iOS 开发中 UITableView 的使用详解 UITableView 是 iOS 开发中最常用的控件之一,用于显示列表数据。它类似于 Android 中的 ListView,都是用于显示列表数据的控件。在 iOS 开发中,UITableView 是一个非常重要的...
UITableView几乎是iOS开发中用处最广的一个控件,当然也是要记相当多东西的一个控件。 创建 首先创建一个新的项目,并添加一个MainViewController的Class文件 打开MainViewController.h文件 @interface ...
在iOS应用开发中,UITableView是不可或缺的一个组件,它主要用于展示列表型的数据,用户可以通过滚动查看更多的内容。在本文中,我们将深入探讨UITableView的基本结构、数据源(UITableViewDataSource)以及代理...
### IPhone之UITableView详解 #### 一、前言 UITableView 是 iOS 开发中非常重要的一个控件,用于显示数据列表。相比于 UIButton 等简单控件,UITableView 的使用较为复杂,涉及较多的概念与方法。本文将详细介绍 ...
UITableView 详细讲解
删除单元格是UITableView常见的操作之一。你可以通过实现`tableView:commitEditingStyle:forRowAtIndexPath:`方法来处理删除请求。当用户轻扫单元格并选择“删除”时,此方法会被调用。在这个方法中,你需要更新数据...
以上就是关于"ios uitableview cell的展开收缩功能"的知识点详解,涵盖从数据源设计、界面定制到实际操作的完整流程。在实际开发中,这个功能可以根据需求进行各种定制,以适应不同场景下的用户体验需求。
在iOS开发中,UITableView和UINavigationController的NavigationBar是两个非常重要的组件。它们被广泛用于构建用户界面,特别是当需要展示列表数据或在应用中导航时。接下来我们将深入探讨这两个组件的常用设置。 ...
在iOS开发中,UITableView是展示数据列表的关键组件,它允许用户滚动查看并交互大量信息。而UITableViewController则是专门为了管理UITableView而设计的视图控制器,它整合了数据源和委托的功能,简化了列表的实现...
在iOS应用开发中,UITableView是常用的视图组件,用于展示列表数据。对于用户交互,左滑删除功能是一项常见的需求,特别是在处理大量可操作的数据时。本文将深入探讨如何自定义UITableView,以实现在不同iOS系统版本...
在iOS开发中,UITableView是展示列表数据的重要组件。在设计用户界面时,调整UITableView的颜色能够极大地影响用户体验。本文将深入探讨如何在iOS中为UITableView设置各种颜色,包括默认颜色、自定义颜色、背景颜色...
UICollectionViewFlowLayout是默认布局,类似于UITableView的滚动方式,而UICollectionViewGridLayout则创建一个网格布局。 要创建自定义布局,你需要继承UICollectionViewLayout,并覆盖其关键方法。如`prepare()`...
在iOS开发中,协议(Protocol)和代理(Delegate)是两个至关重要的概念,它们构成了对象间通信的基础。...通过"iOS 代理详解Demo"的学习,开发者可以更好地掌握如何运用这些机制来构建高效、可扩展的应用程序。
本文将深入探讨如何在iOS项目中实现PNChart与UITableView之间的联动效果,以便更好地展示和操作数据。 首先,当用户点击PNChart中的某一部分时,我们希望对应的UITableView单元格被高亮显示。PNChart提供了`...
### iOS成长之路2017夏v1.0 #### 知识点概述 该文档似乎是一份关于iOS开发的学习资料汇总,涉及了多个方面的内容和技术。接下来,我们将详细探讨这些知识点。 ### 1. LLVM **知识点详解:** - **LLVM (Low Level...
在iOS开发中,`UITableView` 是一个非常常用且重要的组件,用于展示列表数据。然而,在实际开发过程中,我们经常会遇到`UITableViewCell`顶部出现空白的问题,这可能会对用户体验造成不良影响。本文将详细介绍几种...