- 浏览: 303038 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
yahier:
没帮助。。。。。。
利用JS获取经纬度,定位html地图 -
mountainol:
[img][img][img][img][url][flash ...
iPhone面试题解答,真机调试 -
qww_friend:
很不错的一个案例,试了下,没有报错,就是我想要的
Poi读取Excel2007 -
zcw_java:
peng051410 写道啥时候能更新呢?求解! 好久没弄过了 ...
Spring Security-session过期跳出<iframe> -
peng051410:
啥时候能更新呢?求解!
Spring Security-session过期跳出<iframe>
添加到选中cell中,每一个cell闪烁1秒
[tableView deselectRowAtIndexPath:indexPath animated:YES];
设置cell背景色和背景图
如果是自定义cell,需要注意
设置背景和组件
在需要调用的地方(tableview初始化数据)
//如果自定义cell中没有initUI可以使用下列
当在一个tableview中使用自定义cell,滑动时想更换cell的样式时,可以使用delegate
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomAlarmCell *cell = (CustomAlarmCell*)[tableView cellForRowAtIndexPath:indexPath];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDelay:.1f];
cell.m_switchAlarm.frame = CGRectMake(185, 17, 79, 27);
[UIView commitAnimations];
}
- (void)tableView:(UITableView*)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomAlarmCell *cell = (CustomAlarmCell*)[tableView cellForRowAtIndexPath:indexPath];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDelay:.1f];
cell.m_switchAlarm.frame = CGRectMake(227, 17, 79, 27);
[UIView commitAnimations];
}
//- (void)willTransitionToState:(UITableViewCellStateMask)state
//{
// [super willTransitionToState:state];
// if(self.editingStyle == UITableViewCellEditingStyle)
// {
// m_switchAlarm.hidden = YES;
// }
//}
//- (void)didTransitionToState:(UITableViewCellStateMask)state
//{
// [super didTransitionToState:state];
//}
[tableView deselectRowAtIndexPath:indexPath animated:YES];
设置cell背景色和背景图
UIView *backgrdView = [[UIView alloc] initWithFrame:cell.frame]; backgrdView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tabCell_background.png"]]; cell.backgroundView = backgrdView;
如果是自定义cell,需要注意
设置背景和组件
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) { // Initialization code self.contentView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"tmall_bg_main"]]; self.logo = [[[UIImageView alloc] initWithFrame:CGRectMake(5, 5, 70, 70)] autorelease]; self.logo.backgroundColor = [UIColor clearColor]; [self.contentView addSubview:self.logo]; self.title = [[[UILabel alloc] initWithFrame:CGRectMake(80, 20, 230, 20)] autorelease]; self.title.font = [UIFont systemFontOfSize:16.0f]; self.title.backgroundColor = [UIColor clearColor]; self.title.opaque = NO; [self.contentView addSubview:self.title]; self.subTtile = [[[UILabel alloc] initWithFrame:CGRectMake(80, 40, 230, 14)] autorelease]; self.subTtile.font = [UIFont systemFontOfSize:12.0f]; self.subTtile.textColor = [UIColor colorWithRed:158/255.0 green:158/255.0 blue:158/255.0 alpha:1.0]; self.subTtile.backgroundColor = [UIColor clearColor]; self.subTtile.opaque = NO; [self.contentView addSubview:self.subTtile]; UILabel *sLine1 = [[[UILabel alloc] initWithFrame:CGRectMake(0, 78, 320, 1)] autorelease]; sLine1.backgroundColor = [UIColor colorWithRed:198/255.0 green:198/255.0 blue:198/255.0 alpha:1.0]; UILabel *sLine2 = [[[UILabel alloc] initWithFrame:CGRectMake(0, 79, 320, 1)] autorelease]; sLine2.backgroundColor = [UIColor whiteColor]; [self.contentView addSubview:sLine1]; [self.contentView addSubview:sLine2]; } return self; }
在需要调用的地方(tableview初始化数据)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"cate_cell"; CateTableCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[CateTableCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; cell.selectionStyle = UITableViewCellSelectionStyleNone; } NSDictionary *cate = [self.cates objectAtIndex:indexPath.row]; cell.logo.image = [UIImage imageNamed:[[cate objectForKey:@"imageName"] stringByAppendingString:@".png"]]; cell.title.text = [cate objectForKey:@"name"]; NSMutableArray *subTitles = [[NSMutableArray alloc] init]; NSArray *subClass = [cate objectForKey:@"subClass"]; for (int i=0; i < MIN(4, subClass.count); i++) { [subTitles addObject:[[subClass objectAtIndex:i] objectForKey:@"name"]]; } cell.subTtile.text = [subTitles componentsJoinedByString:@"/"]; [subTitles release]; return cell; }
//如果自定义cell中没有initUI可以使用下列
// static NSString *customCellIdentifier = @"CustomCellIdentifier"; // UINib *nib = [UINib nibWithNibName:@"CustomAlarmCell" bundle:nil]; // [m_tabAlarmDateList registerNib:nib forCellReuseIdentifier:customCellIdentifier]; // // CustomAlarmCell *cell = [m_tabAlarmDateList dequeueReusableCellWithIdentifier:customCellIdentifier];
当在一个tableview中使用自定义cell,滑动时想更换cell的样式时,可以使用delegate
- (void)tableView:(UITableView*)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomAlarmCell *cell = (CustomAlarmCell*)[tableView cellForRowAtIndexPath:indexPath];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDelay:.1f];
cell.m_switchAlarm.frame = CGRectMake(185, 17, 79, 27);
[UIView commitAnimations];
}
- (void)tableView:(UITableView*)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomAlarmCell *cell = (CustomAlarmCell*)[tableView cellForRowAtIndexPath:indexPath];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDelay:.1f];
cell.m_switchAlarm.frame = CGRectMake(227, 17, 79, 27);
[UIView commitAnimations];
}
//- (void)willTransitionToState:(UITableViewCellStateMask)state
//{
// [super willTransitionToState:state];
// if(self.editingStyle == UITableViewCellEditingStyle)
// {
// m_switchAlarm.hidden = YES;
// }
//}
//- (void)didTransitionToState:(UITableViewCellStateMask)state
//{
// [super didTransitionToState:state];
//}
发表评论
-
ios序列化对象存储本地
2013-09-10 14:14 1666#import <Foundation/Founda ... -
Tableview详解
2013-08-22 15:47 1247一,为tableview中cell,修改其样式 [tabl ... -
使用MKNetworkKit函数Demo
2013-08-16 13:41 4171一、引入MKNetworkKit 1,添加MKNetwork ... -
ios国际化
2013-08-15 15:22 804前些天升级到Xcode4.5,现在正在用Xcode4.5+IO ... -
SDWebImage Demo手册
2013-08-13 12:58 1074分享源码,有问题回复 SDWebImage 异步加载 缓存图 ... -
ios文件读写
2013-08-12 15:44 945//写入缓存文件,缓存目录下 NSArray * ... -
ios使用预编译命令解决问题
2013-08-12 13:44 1901对于MacOS设备不同,做出相应响应 #if TARGET ... -
tableview设置上下滚动高度,启用删除
2013-08-06 17:14 1676可在viewDidAppear中实现加入 [tablvew s ... -
UILable手册
2013-08-02 13:25 8091,自动算出长度,宽度 CGSize notRecomment ... -
NSMutableArray排序
2013-07-26 15:44 1187NSMutableArray *array = [NS ... -
NSDate和NSString的转换
2013-07-15 14:43 764用于uidate,picker。。 +(NSDate ... -
c++结构体在ios端解析
2013-07-11 09:20 1070定义宏和结构体 #define ENTRYCOUNT 10 ... -
NSDate-常用操作及控制
2013-07-05 10:42 6981对于NSDate常用操作整理,如有不足请补充 1,获取当前时 ... -
NotifiCationCenter控制使用
2013-07-02 11:31 1060NSNotificationCenter 第一种,这个只是传 ... -
NSURL转NSData转UIImage
2013-07-01 15:37 17364NSAutoreleasePool *pool = [[N ... -
UIImage压缩和缩放
2013-07-01 14:31 2911节省大量内存,重绘缩略图; #define K_conten ... -
转载ios开发资源汇总
2013-06-28 15:02 1790如何用Facebook graphic api上传视频: h ... -
ios将模拟器与真机.a文件合并
2013-06-24 16:54 47941,command+b build一下工程 2,Debug- ... -
PickerView准备捕获时间,循环滚动demo
2013-06-18 15:09 4372最重要的下面几行代码 - (void) clickRigh ... -
UI圆角以及阴影等效果利用layer属性
2013-06-17 10:42 6353制作圆角button等 //必须导入的空间 #impor ...
相关推荐
一、UITableViewCell自定义基础 自定义UITableViewCell主要涉及以下几个方面: 1. 创建UITableViewCell子类:通过继承UITableViewCell,我们可以添加自定义的UI元素,如UILabel、UIImageView、UIButton等,并在子类...
### iOS开发UITableViewCell自定义详解 在iOS开发过程中,UITableView是一种非常常见的UI组件,它能够以列表的形式展示数据。而UITableViewCell则是构成UITableView的基本单元。很多时候,我们需要对这些单元进行...
在这个"ios-UItableViewCell自定义多选的cell.zip"压缩包中,包含的"TableViewDidSelectDemo"很可能是演示如何实现这个功能的一个示例代码。 首先,我们来看一下UITableView的基本使用。UITableView由两个主要部分...
在iOS应用开发中,自定义`UITableViewCell`是创建独特、高效用户界面的关键步骤。这个资料包专注于教你如何实现各种样式的表格输入界面,这在构建iOS应用时非常实用,特别是当你需要用户输入数据或者进行设置时。...
在iOS开发中,自定义UITableViewCell是一项常见的任务,它允许开发者为应用程序创建独特且富有吸引力的用户界面。在iOS 7中,苹果引入了一系列新的设计语言和API更新,使得自定义UITableViewCell变得更加灵活和直观...
在iOS应用开发中,自定义UITableViewCell是提升用户体验和界面美观度的重要手段。它允许开发者根据需求定制特定的单元格样式,展示更丰富的信息或者提供更复杂的交互。本篇全面解析将深入探讨如何在iOS应用中实现...
然而,系统默认的UITableViewCell样式有限,为了满足更丰富的界面设计需求,开发者经常需要自定义UITableViewCell。本主题将深入探讨如何在iOS应用中自定义UITableViewCell。 首先,创建自定义UITableViewCell通常...
一、自定义UITableViewCell 自定义UITableViewCell是实现“cell上加载web view”的第一步。首先,我们需要创建一个新的UITableViewCell子类,并在Xcode中设计UI。在故事板(Storyboard)或代码中添加一个UIWebView...
在iOS开发中,自定义UITableViewCell是一项常见的任务,它允许开发者根据需求创建独特的界面展示效果,提升用户体验。"xib和手写代码自定义UITableViewCell"这个主题涵盖了两种主要的自定义方式:通过故事板(XIB)...
在Swift开发中,实现UITableViewCell左右滑动出现更多按钮并能自定义按钮高度的功能,涉及到一些核心的UITableView和UITableViewCell的交互技术。以下将详细介绍这个过程的关键步骤和知识点。 首先,我们需要了解...
实现自定义UITableViewCell左滑动多菜单功能。 在同一个工作空间里面,采用了 3中实现方式: 1、使用自定义UITableViewCell + UISwipeGestureRecognizer + 代理 实现; 2、使用自定义UITableViewCell + ...
在iOS应用开发中,使用Xib(XML Interface Builder)文件自定义UITableViewCell是一种常见的做法,它可以帮助我们更方便地设计和管理界面。这篇文章将详细介绍如何在iPhone开发中利用Xib来创建自定义的...
3. UITableViewCell 自定义:为了展示日期和照片,我们可能需要创建一个自定义的UITableViewCell,包含一个标签来显示日期,以及一个UIImageView来展示照片。我们可以使用AutoLayout来设置约束,确保单元格的布局在...
1. **UITableViewCell 自定义**: 为了美化TableView,开发者通常会自定义UITableViewCell,包括设置背景视图、内容视图、添加额外的UI元素(如图片、标签、进度条等)以及调整布局。在Demo中,可能包含了自定义Cell...
默认的UITableViewCell样式可能无法满足我们的需求,因此通常会自定义一个UITableViewCell子类,添加相应的UI元素,如UIImageView用于显示头像,UILabel显示姓名和在线状态。在`tableView:cellForRowAtIndexPath:`中...
自定义`UITableViewCell`通常涉及重写`init(style:reuseIdentifier:)`方法,设置子视图(如`UILabel`和`UIImageView`),并实现`layoutSubviews()`来处理布局。 2. **Auto Layout** 图文混排的布局管理是通过Auto ...
在iOS应用开发中,自定义UITableViewCell是创建独特且功能丰富的用户界面的关键步骤。这个源码包"IOS源码——自定义UITableViewCell。实现各种样式的表格输入界面.7z"提供了实现这一目标的具体示例,主要关注如何在...
在这里,开发者可能会使用UITableViewCell自定义样式,以达到SegmentFault应用中的效果。 对于UITableView,你需要创建一个数据源,包含所有菜单项的列表,并实现UITableViewDataSource和UITableViewDelegate协议,...
在iOS开发中,UITableView是展示数据列表的一种常见控件,而自定义UITableViewCell则可以让我们根据需求设计出独具特色的界面。本教程将通过使用XIB(Interface Builder)来创建自定义的UITableViewCell,并实现...