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

时间: 2024-11-07 19:36:08

ios-uitableviewcell展开的相关文章

iOS UITableViewCell UITableVIewController 纯代码开发

iOS UITableViewCell UITableVIewController 纯代码开发 <原创> 1.纯代码 自定义UITableViewCell 直接上代码 ////// #import <UIKit/UIKit.h> @interface CodeTableViewCell : UITableViewCell @property (nonatomic, weak) UIImageView *iconView; @property (nonatomic, weak) UI

iOS : UITableViewCell复用之自己理解

UITableViewCell复用在iOS中那是很重要的,面试多会问到,下面就说一下我自己的理解 先看一个效果 当屏幕和cell的高度一定后,屏幕先呈现可见部分,当滑动的时候,第一个将要划出页面,下一个将要进入可视页面时,此时还没有复用池中还没有标识为"ID"的cell 可复用,于是就会执行if语句,进行创建,当第一个划出屏幕时,就会被标记,放到复用池,当在开始滑动页面时,第八个(序号)要进入时这时就会走复用,第二个放到复用池,再滑动第三个进入复用池,一直到都离开就都进入复用池了,就不

iOS UITableViewCell的&quot;滑动出现多个按钮&quot;

前言: 本篇博客其实就是想介绍tableviewcell滑动的一些"事", 昨天在逛github的时候看到的还挺有意思的三方库, , 简单用了一下感觉不错, 一作为记录, 二是希望有类似需求的可以得到帮助. 本篇介绍了 iOS5之后(使用三方库) iOS8之后(系统方法)分别的实现方式 iOS > = 5.0 iOS> = 8.0 MGSwipeTableCell(Github上的三方库)- iOS >= 5.0 直接使用比较简单 通过代码看一下 首先签这个协议MGS

iOS UITableViewCell点击时子视图背景透明的解决方法

在做iOS项目的开发中,UITableView控件的应用十分广泛.在进行自定义UITableViewCell时,经常遇到这样的问题:在UITableViewCell上面添加了一个有背景颜色的子视图,当用户点击UITableViewCell或者选中UITableViewCell时,Cell上的子视图发生了奇怪的变化,其背景色变透明了,如果添加在Cell上的子视图只是一个色块,那么我们看起来,这个子视图好像莫名其妙的消失了一样.    如果设置  self.selectionStyle = UITa

IOS UITableViewCell使用详解

IOS中UITableViewCell使用详解 - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier; Cell的初始化方法,可以设置一个风格和标识符,风格的枚举如下: typedef NS_ENUM(NSInteger, UITableViewCellStyle) {     UITableViewCellStyleDefault, // 默认风

iOS 文本展开收起

经常会遇到类似微信的展开收起,本身这个逻辑是比较清晰的,动态变换文本的高度就可以,但实际操作过程中,却会有各种坑,最令人蛋疼的就是抖动,下面简述下自己的采坑之路 一.给定文本一个限定高度(比如:90),小于等于90就取90,大于90默认收起,点击展开取真实高度,点击收起,取90.这样的做法是直接拿到内容就计算出高度,变高度. 以下5种方法经测验方案5抖动最小属于偶发性质且很不明显(抖动的根本原因在于文本的高度是可变的,在偶发情况下可能刚好使cell的高度在一个临界值:比如差零点几个像素之类的,然

iOS -- UITableViewCell -- 通过代码自定义Cell(cell的高度不一致)

1.新建一个继承自UITableViewCell的类 2.重写initWithStyle:reuseIdentifier:方法 Ø添加所有需要显示的子控件(不需要设置子控件的数据和frame,  子控件要添加到contentView中) Ø进行子控件一次性的属性设置(有些属性只需要设置一次, 比如字体\固定的图片) 3.提供2个模型 Ø数据模型: 存放文字数据\图片数据 Øframe模型: 存放数据模型\所有子控件的frame\cell的高度 4.cell拥有一个frame模型(不要直接拥有数据

iOS:UITableViewCell自定义单元格

UITableViewCell:自定义的单元格,可以在xib中创建单元格,也可以在storyBorad中创建单元格.有四种创建方式 <1>在storyBorad中创建的单元格,它是静态的单元格,单元格一开始就存在,可以直接根据自定义的重用标识名加载使用: <2>当然,storyBorad中单元格也可以关联一个自定义的类,这个类必须是继承UITableViewCell,这种情况下,直接根据自定义的重用标识名加载使用也是可以的. <3>在xib中创建的单元格,如果直接通过b

iOS UITableViewCell上 取消button点击延迟

这个现象在高亮状态时最为明显 连续触碰button 高亮状态会不显示. 处理方案是关掉scrollView的延迟 代码: 在创建tableView的地方加下面这行 _tableView.delaysContentTouches =NO; 在tableView代理方法 cellForRow 里加入下面代码 for (UIView *currentViewin cell.subviews) { if([currentView isKindOfClass:[UIScrollViewclass]]) {

iOS uitableViewCell 选中 push后返回 取消选中状态

首先我有一个UITableViewController,其中每个UITableViewCell点击后都会push另一个 ViewController,每次点击Cell的时候,Cell都会被选中,当从push的ViewController返回的时候选中的Cell便会 自动取消选中.后来由于某些原因我把这个UITableViewController改成了UIViewController,之后就产生了一个问题:每 次返回到TableView的时候,之前选中的Cell不能自动取消选中,经过查找得知: U