IOS 作业项目 TableView两个section中cell置顶功能实现
点击cell会置顶,其他的下移
第一,引入代理
@interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
第二,实现
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
self.itemList = [[NSMutableArray alloc] init];
//存放置顶数据的数组
NSMutableArray *topArray = [[NSMutableArray alloc] init];
//存放不置顶数据的数组
NSMutableArray *normalArray = [[NSMutableArray alloc] init];
[self.itemList addObject:topArray];
[self.itemList addObject:normalArray];
[normalArray addObject:@"1"];
[normalArray addObject:@"2"];
[normalArray addObject:@"3"];
[normalArray addObject:@"4"];
[normalArray addObject:@"5"];
[normalArray addObject:@"6"];
[normalArray addObject:@"7"];
[normalArray addObject:@"8"];
[normalArray addObject:@"9"];
[normalArray addObject:@"10"];
[normalArray addObject:@"11"];
[normalArray addObject:@"12"];
CGRect frame = {0,20,320,460};
UITableView *tableView = [[UITableView alloc] initWithFrame:frame style:UITableViewStylePlain];
tableView.delegate = self;
tableView.dataSource = self;
[self.view addSubview:tableView];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
//设置一共有2个分区,分别做为置顶区与正常区
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 2;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//根据分区号,获取对应的存放容器
NSArray *itemArray = [self.itemList objectAtIndex:section];
return itemArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//根据分区号,获取对应的存放容器
NSArray *itemArray = [self.itemList objectAtIndex:indexPath.section];
//指定置顶区的唯一标识符..
static NSString *topIdentifier = @"topIdentifier";
//指定正常区的唯一标识符
static NSString *normalIdentifier = @"normalIdentifier";
//声明返回的变量名
UITableViewCell *cell = nil;
switch (indexPath.section) {
case 0://置顶区域
{
cell = [tableView dequeueReusableCellWithIdentifier:topIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:topIdentifier];
}
cell.textLabel.text = itemArray[indexPath.row];
break;
}
case 1://正常区域
{
cell = [tableView dequeueReusableCellWithIdentifier:normalIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:normalIdentifier];
}
cell.backgroundColor = [UIColor whiteColor];
cell.textLabel.text = itemArray[indexPath.row];
}
}
NSLog(@"22222222");
//返回单元格
return cell;
}
//通过点击单元格完成置顶操作...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//如果点击的是置顶分区则直接返回..
if (indexPath.section == 0) {
return;
}
//否则,则点击的是正常分区,开始整理数据...
NSMutableArray *topArray = [self.itemList objectAtIndex:0];
NSMutableArray *normalArray = [self.itemList objectAtIndex:1];
//正常区域的点击数据
NSString *item = [normalArray objectAtIndex:indexPath.row];
[tableView beginUpdates];//数据数据改变数据,tableview做相应的刷新
//当置顶区域的置顶条数大于等于3时,将置顶区域的最后一个元素移除并且添加到正常区域的第一条
if (topArray.count >= 3)
{
//置顶区域的最后一条数据
NSString *lastTopItem = [topArray lastObject];
[normalArray insertObject:lastTopItem atIndex:0];
[topArray removeObject:lastTopItem];
//第二行
NSIndexPath *lastTopIndexPath = [NSIndexPath indexPathForRow:2 inSection:0];
NSIndexPath *headNormalIndexPath = [NSIndexPath indexPathForRow:0 inSection:1];
[tableView moveRowAtIndexPath:lastTopIndexPath toIndexPath:headNormalIndexPath];
}
//当置顶区域的置顶条数小于3时,直接添加进置顶数组,并且从正常区域移除该对象...
[topArray insertObject:item atIndex:0];
[normalArray removeObject:item];
NSIndexPath *topIndexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[tableView moveRowAtIndexPath:indexPath toIndexPath:topIndexPath];
[tableView endUpdates];
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
NSString *title = nil;
switch (section) {
case 0:
title = @"置顶的啊";
break;
case 1:
title = @"普通的啊";
default:
break;
}
return title;
}
IOS 作业项目 TableView两个section中cell置顶功能实现的更多相关文章
- 【代码笔记】iOS-一个tableView,两个section
一,效果图. 二,工程图. 三,代码. RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController ...
- IOS 作业项目(4)步步完成 画图 程序(中续)
一,程序布局整理 前言://1,程序启动//2,程序流程框架//3,程序界面一致//4,程序界面功能, //这里只做页面的固定功能, //在首次创建界面时,我们会指定好固定事件触发前的固定方法 //至 ...
- IOS 作业项目(4)步步完成 画图 程序(中)
一,承接上文,继续本文 [UIButton buttonWithType:UIButtonTypeRoundedRect]; 如此声明的按钮才会有点击闪动的效果!如果直接frame方式声明就不会有. ...
- IOS 作业项目(2) 画图(保存,撤销,笔粗细设定功能)
先上效果图
- [IOS 开发]TableView如何刷新指定的cell 或section
//一个section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:]; [tableview reloadSections:ind ...
- IOS 作业项目(4)步步完成 画图 程序(剧终)
// // CHViewController.m // SuperDrawingSample // // Created by JaikenLI on 13-11-21. // Copyrig ...
- IOS 作业项目(4)步步完成 画图 程序(上)
先上流程图
- [iOS微博项目 - 2.2] - 在app中获取授权
github: https://github.com/hellovoidworld/HVWWeibo A.发送授权请求 1.使用UIWebView加载请求页面 自定义一个继承UIViewContr ...
- IOS 作业项目(1) 关灯游戏 (百行代码搞定)
1,准备工作,既然要开关灯,就需要确定灯的灯的颜色状态 首先想到的是扩展UIColor
随机推荐
- LINUX&UNIX 安装vmware workstation10和centOS6
大一下时,学习了linux&unix这门课程,全字符的操作,我对它并不是很感冒,不过,还是找学长安装过虚拟机和Linux系统,在考前利用它和putty进行复习.现在重装系统之后,各类软件,自然 ...
- C/C++ 一段代码区分数组指针|指针数组|函数指针|函数指针数组
#include<stdio.h> #include<stdlib.h> #include<windows.h> /* 举列子说明什么是函数指针 */ //以一个加 ...
- js 时间处理
1.格式化时间 function GetDateTimeFormatter(value) { if (value == undefined) { return &q ...
- 131. 132. Palindrome Partitioning *HARD* -- 分割回文字符串
131. Palindrome Partitioning Given a string s, partition s such that every substring of the partitio ...
- SQL批量删除与批量插入
批量删除: DELETE FROM MyTable WHERE ID IN (1,2); 批量插入: INSERT INTO MyTable(ID,NAME) VALUES(1,'123');INSE ...
- C#类和成员的修饰符
C#中public.private.protected.internal.protected internal & (2010-09-22 13:33:45)转载 标签: 杂谈 分类: C# ...
- Struts、JSTL标签库的基本使用方法
一 使用Struts标签之前需要经过下面3个步骤的配置. 1.导入TLD文件. 2.在web.xml中注册标签库. 3.在页面中引入标签库. 下面详细介绍以上步骤. 1 导入TLD文件. TLD文件是 ...
- wordpress+php+mysql 配置
下载并解压wordpress之后,在mysql新建一个数据库,命名,例如testDB1,然后在IIS中新建虚拟目录,指向wordress所在的目录,删除wordpress目录下的wp-config.p ...
- 转载:Clear Float
众所周知,平时在写HTML代码时,难免少不了使用Float样式,这样一来,假使您没有清除浮动,那么有浮动元素的父元素容器将元素将无法自动撑 开.换句简单好理解的话来说,假如你在写CODE时,其中div ...
- Wcf Client 异常和关闭的通用处理方法
在项目中采用wcf通讯,客户端很多地方调用服务,需要统一的处理超时和通讯异常以及关闭连接. 1.调用尝试和异常捕获 首先,项目中添加一个通用类ServiceDelegate.cs public del ...