点击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置顶功能实现的更多相关文章

  1. 【代码笔记】iOS-一个tableView,两个section

    一,效果图. 二,工程图. 三,代码. RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController ...

  2. IOS 作业项目(4)步步完成 画图 程序(中续)

    一,程序布局整理 前言://1,程序启动//2,程序流程框架//3,程序界面一致//4,程序界面功能, //这里只做页面的固定功能, //在首次创建界面时,我们会指定好固定事件触发前的固定方法 //至 ...

  3. IOS 作业项目(4)步步完成 画图 程序(中)

    一,承接上文,继续本文  [UIButton buttonWithType:UIButtonTypeRoundedRect]; 如此声明的按钮才会有点击闪动的效果!如果直接frame方式声明就不会有. ...

  4. IOS 作业项目(2) 画图(保存,撤销,笔粗细设定功能)

    先上效果图

  5. [IOS 开发]TableView如何刷新指定的cell 或section

    //一个section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:]; [tableview reloadSections:ind ...

  6. IOS 作业项目(4)步步完成 画图 程序(剧终)

    // //  CHViewController.m //  SuperDrawingSample // //  Created by JaikenLI on 13-11-21. //  Copyrig ...

  7. IOS 作业项目(4)步步完成 画图 程序(上)

    先上流程图

  8. [iOS微博项目 - 2.2] - 在app中获取授权

    github: https://github.com/hellovoidworld/HVWWeibo   A.发送授权请求 1.使用UIWebView加载请求页面 自定义一个继承UIViewContr ...

  9. IOS 作业项目(1) 关灯游戏 (百行代码搞定)

    1,准备工作,既然要开关灯,就需要确定灯的灯的颜色状态 首先想到的是扩展UIColor

随机推荐

  1. la----3695 City Game(最大子矩阵)

    Bob is a strategy game programming specialist. In his new city building game the gaming environment ...

  2. C#中结构体和类的区别

    结构体和类同样能够定义字段,方法和构造函数,都能实例化对象,这样看来结构体和类的功能好像是一样的了,但是他们在数据的存储上是不一样的 C#结构体和类的区别问题:这两种数据类型的本质区别主要是各自指向的 ...

  3. .net读取xml文件中文乱码问题解决

    读取XML的编码方式Encoding.UTF8 要和<?xml version="1.0" encoding="utf-8"?>的encoding ...

  4. UML类图关系大全

    UML类图关系大全 1.关联 双向关联: C1-C2:指双方都知道对方的存在,都可以调用对方的公共属性和方法.在GOF的设计模式书上是这样描述的:虽然在分析阶段这种关系是适用的,但我们觉得它对于描述设 ...

  5. SVN删除同名文件夹

    解     释一下:     SVN  出现这个错误的原因是我删除了一个文件夹后又创建了一个同名文件夹.  在  svn   server  端,好像是不能区分这两个文件夹,所以出现了错误.     ...

  6. MySQL为数据表的指定字段插入数据

    username not null 没有默认值/有默认值   insert不插入username字段 均不报错 2014年07月23日21:05    百科369 MySQL为数据表的指定字段插入数据 ...

  7. Unity3d之MonoBehaviour的可重写函数整理

    最近在学习Unity3d的知识.虽然有很多资料都有记录了,可是我为了以后自己复习的时候方便就记录下来吧!下面的这些函数在Unity3d程序开发中具有很重要的作用. Update 当MonoBehavi ...

  8. Oracle、Mysql、Sql Server语句的区别

    1.空值的处理——判断是否为空,为空时取一个值,不为空时取另一个值 1).Sql Server 中 ISNULL(check_expression,replacement_value) 解释:如果ch ...

  9. function format_number(srcNumber, n) {

    function format_number(srcNumber, n) {var dstNumber = parseFloat(srcNumber);if (isNaN(dstNumber)) {r ...

  10. [开发笔记]-“在引用COM组件时,出现了无法嵌入互操作类型。。。”的错误

    这两天在做一个需要将wps文档转换成word文档的程序,在调用wps的com组件时项目编译是没有问题的,但当运行的时候却弹出了下面的错误提示: 从网上百度一番后,找到了正确的解决方法. 先从Com组件 ...