ios-uitableviewcell展开
#import <UIKit/UIKit.h>
@interface ZSDHelpCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *selectImageView;
@property(nonatomic,copy)NSString *question;
@property(nonatomic,copy)NSString *answer;
//获取展开后的高度
-(CGFloat)getExpandHeight;
@end
#import "ZSDHelpCell.h"
//判断系统版本
#define IOS_VERSION_7_OR_ABOVE (([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)? (YES):(NO))
@interface ZSDHelpCell()
@property (weak, nonatomic) IBOutlet UILabel *questionLabel;
@property (weak, nonatomic) IBOutlet UILabel *answerLabel;
@end
@implementation ZSDHelpCell
- (void)awakeFromNib
{
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
-(void)setAnswer:(NSString *)answer
{
if (_answer!=answer)
{
_answer=answer;
_answerLabel.text=_answer;
}
}
-(void)setQuestion:(NSString *)question
{
if (_question!=question)
{
_question=question;
_questionLabel.text=_question;
}
}
-(CGFloat)getExpandHeight
{
//ios8对于systemLayoutSizeFittingSize这个方法有效
return IOS_VERSION_7_OR_ABOVE==1?[self systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height:120;
}
@end
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
@property (weak, nonatomic) IBOutlet UITableView *myTableView;
@end
#import "ViewController.h"
#import "ZSDHelpCell.h"
#define kDefaultHeight 44.0f
#define kTabeleHeaderHeight 40.0f
//背景色
#define kThemeBackGroundColor [UIColor colorWithRed:0.93 green:0.92 blue:0.92 alpha:1]
#pragma mark - life circle
@interface ViewController ()
{
NSMutableArray *expandArray;//展开的数组
NSMutableDictionary *cellHeightDic;//设置cell高度的字典
NSMutableDictionary *dataSourceDic;//读取plist文件内容
}
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
_myTableView.backgroundColor=kThemeBackGroundColor;
[self InitializationArrayOrDictionary];
[self loadContentFromPlist];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark - private
-(void)InitializationArrayOrDictionary
{
expandArray=[NSMutableArray array];
cellHeightDic=[NSMutableDictionary dictionary];
dataSourceDic=[NSMutableDictionary dictionary];
}
-(void)loadContentFromPlist
{
NSString *plistPath=[[NSBundle mainBundle] pathForResource:@"Content" ofType:@"plist"];
dataSourceDic=[NSMutableDictionary dictionaryWithContentsOfFile:plistPath];
//NSLog(@"datasourcedic=%@",[dataSourceDic allValues]);
}
#pragma mark - UITableViewDataSource
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return dataSourceDic.count;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSArray *sectionArray=[dataSourceDic allValues];
NSDictionary *rowDic=[sectionArray objectAtIndex:section];
return rowDic.count;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([expandArray containsObject:indexPath])
{
NSString *key=[NSString stringWithFormat:@"%ld",indexPath.section];
if ([cellHeightDic objectForKey:key])
{
return [[cellHeightDic objectForKey:key] floatValue];
}
}
return kDefaultHeight;
}
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return kTabeleHeaderHeight;
}
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
//section添加一个view和label
CGRect tempRect=CGRectMake(0, 0, tableView.bounds.size.width,kTabeleHeaderHeight);
UIView *headerView = [[UIView alloc]initWithFrame:tempRect];
headerView.backgroundColor=kThemeBackGroundColor;
NSArray *sectionArray=[dataSourceDic allKeys];
NSString *text=[sectionArray objectAtIndex:section];
UILabel *textLabel = [[UILabel alloc]initWithFrame:CGRectMake(12.0f, 14.0f, 100.0f, 15.0f)];
textLabel.font = [UIFont systemFontOfSize:15.0f];
textLabel.backgroundColor = [UIColor clearColor];
textLabel.textColor = [UIColor grayColor];
textLabel.text = text;
[headerView addSubview:textLabel];
return headerView;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
ZSDHelpCell *cell=(ZSDHelpCell *)[tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
NSArray *sectionArray=[dataSourceDic allValues];
NSDictionary *rowDic=[sectionArray objectAtIndex:indexPath.section];
NSArray *questionList=[rowDic allKeys];
NSArray *answerList=[rowDic allValues];
cell.question=[questionList objectAtIndex:indexPath.row];
//设置每个cell的高度key
NSString *key=[NSString stringWithFormat:@"%ld",indexPath.section];
if (![cellHeightDic objectForKey:key])
{
cell.answer=[answerList objectAtIndex:indexPath.row];
CGFloat height=[cell getExpandHeight];
[cellHeightDic setObject:[NSNumber numberWithFloat:height] forKey:key];
}
// 隐藏cell
UIImage *normalImg = [UIImage imageNamed:@"member_icon_more"];
//展开cell
UIImage *selectImg = [UIImage imageNamed:@"common_icon_down"];
if ([expandArray containsObject:indexPath])
{
cell.selectImageView.image=selectImg;
cell.answer=[answerList objectAtIndex:indexPath.row];
}
else
{
cell.selectImageView.image=normalImg;
cell.answer=nil;
}
return cell;
}
#pragma mark - UITableViewDelegate
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//如果数组中不存在该索引,那么把它添加到数组中
if(![expandArray containsObject:indexPath])
{
[expandArray addObject:indexPath];
}
//否则从数组中移除
else
{
[expandArray removeObject:indexPath];
}
[tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
@end

ios-uitableviewcell展开的更多相关文章
- iOS UITableViewCell UITableVIewController 纯代码开发
iOS UITableViewCell UITableVIewController 纯代码开发 <原创> .纯代码 自定义UITableViewCell 直接上代码 ////// #imp ...
- iOS UITableViewCell的"滑动出现多个按钮"
本文授权转载,作者:@夏天是个大人了 前言: 本篇博客其实就是想介绍tableviewcell滑动的一些"事",昨天在逛github的时候看到的还挺有意思的三方库,简单用了一下感觉 ...
- iOS UITableViewCell点击时子视图背景透明的解决方法
在做iOS项目的开发中,UITableView控件的应用十分广泛.在进行自定义UITableViewCell时,经常遇到这样的问题:在UITableViewCell上面添加了一个有背景颜色的子视图,当 ...
- ios UITableViewCell重用问题
在写sina 微博界面的过程中使用到了cell,那么就是在cell上添加一些控件,但是由于每条微博的内容都是不同的,所以在显示的过程中,出现了内容重叠的问题,其实就是UITableViewCell重用 ...
- iOS UITableViewCell滑动删除
一般我们使用列表的形式展现数据就会用到UITableView.在熟练掌握了用UITableView展示数据以后,开发过程中可能会遇到需要删除数据的需求,我们想实现在一行数据上划动一下,然后出现一个删除 ...
- iOS UITableViewCell的分割线向左延长15(cell长度为全宽)
iOS7情况下: tableView.separatorInset = UIEdgeInsetsZero; iOS8.9情况下: 首先在viewDidLoad方法中加上如下代码: if ([table ...
- IOS - UITableViewCell的选中时的颜色及tableViewCell的selecte与deselecte
1.系统默认的颜色设置 [cpp] view plaincopy //无色 cell.selectionStyle = UITableViewCellSelectionStyleNone; //蓝色 ...
- iOS UITableViewCell 中 调整imageView 的图片大小
在我的项目中,很多地方都希望将UITableViewCell 中的imageView 能根据自己图片的大小来进行展示,而就为了解决这个问题又觉得重写UITableViewCell 很不值得. 如下: ...
- ios uitableviewcell动态计算高度
#import <UIKit/UIKit.h> @interface TestCell : UITableViewCell @property (weak, nonatomic) IBOu ...
- 点击UITableviewCell展开收缩
#import "ViewController.h" #import "ZSDTestCell.h" @interface ViewController ()& ...
随机推荐
- HDU2680 Choose the best route 最短路 分类: ACM 2015-03-18 23:30 37人阅读 评论(0) 收藏
Choose the best route Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Ot ...
- How Tomcat Works(十六)
本文接下来会介绍Host容器和Engine容器,在tomcat的实际部署中,总是会使用一个Host容器:本文介绍Host接口和Engine接口及其相关类 Host容器是org.apache.catal ...
- linux中less命令使用
less与cat和more的区别: cat命令功能用于显示整个文件的内容单独使用没有翻页功能因此经常和more命令搭配使用,cat命令还有就是将数个文件合并成一个文件的功能. more命令功能:让画面 ...
- fastcgi 分布式
以lighttpd fastcgi写一下自己对fastcgi分布式的理解. 假设一台机器A上运行lighttpd,在这台主机上只是对请求进行分发. 而在其他多台机器上运行多个fastcgi进程,用来接 ...
- 结构类模式(五):外观(Facade)
定义 为子系统中的一组接口提供一个一致的界面,定义一个高层接口,这个接口使得这一子系统更加容易使用. UML 优点 对客户屏蔽了其子系统组件,因而减少了客户处理对象的数目,并使得子系统实用起来更方便. ...
- 集成StyleCop到Jenkins CI
这是集成完stylecop之后的Jenkins,可以看到code review结果随每个build变化的图表,Build History里面可以看到#150之前的build状态是unstable,这是 ...
- 移动端类似IOS的滚动年月控件(需要jQuery和iScroll)
一. 效果图 二. 功能介绍 支持滚动和点击选择年月.(目前只支持设置年月的最大最小值,不支持整体的最大最小值) 三. 代码 1. 在你的html中添加如下代码: 直接加载<body>里面 ...
- 以静态变量保存 Spring ApplicationContext
package com.thinkgem.jeesite.common.utils; import java.net.HttpURLConnection; import java.net.URL; i ...
- 解决xp搜索“文件中的一个字或者词组”失效
问:我的电脑安装的是Windows XP系统,最近它的文件搜索功能不能用了,打开搜索界面时,输入文件或文件夹名的文本框是灰色的,无法输入.请问该怎么解决? 答:打开注册表编辑器,定位到[HKEY_CU ...
- 史上最全APP推广渠道
群主做App推广的过程中,有过失败也尝过成功的甜头,渐渐地在APP推广尤其是渠道推广中积累了一些实战经验想同大家分享.如果各位有更好的推广建议,欢迎沟通分享哦! 一.应用商店推广 1.应用市场 ...