iOS开发UI篇—实现UItableview控件数据刷新

简介: iOS开发UI篇—实现UItableview控件数据刷新 一、项目文件结构和plist文件 二、实现效果 1.说明:这是一个英雄展示界面,点击选中行,可以修改改行英雄的名称(完成数据刷新的操作).

iOS开发UI篇—实现UItableview控件数据刷新

一、项目文件结构和plist文件

二、实现效果

1.说明:这是一个英雄展示界面,点击选中行,可以修改改行英雄的名称(完成数据刷新的操作).

运行界面:

点击选中行:

修改数据后自动刷新:

三、代码示例

数据模型部分:

YYheros.h文件

 1 //
 2 //  YYheros.h
 3 //  10-英雄展示(数据刷新)
 4 //
 5 //  Created by apple on 14-5-29.
 6 //  Copyright (c) 2014年 itcase. All rights reserved.
 7 //
 8 
 9 #import <Foundation/Foundation.h>
10 #import "Global.h"
11 
12 @interface YYheros : NSObject
13 @property(nonatomic,copy)NSString *name;
14 @property(nonatomic,copy)NSString *icon;
15 @property(nonatomic,copy)NSString *intro;
16 
17 //-(instancetype)initWithDict:(NSDictionary *)dict;
18 //+(instancetype)herosWithDict:(NSDictionary *)dict;
19 YYinitH(hero)
20 @end

 YYheros.m文件

 1 //
 2 //  YYheros.m
 3 //  10-英雄展示(数据刷新)
 4 //
 5 //  Created by apple on 14-5-29.
 6 //  Copyright (c) 2014年 itcase. All rights reserved.
 7 //
 8 
 9 #import "YYheros.h"
10 
11 @implementation YYheros
12 //-(instancetype)initWithDict:(NSDictionary *)dict
13 //{
14 //    if (self=[super init]) {
15 ////        self.name=dict[@"name"];
16 ////        self.icon=dict[@"icon"];
17 ////        self.intro=dict[@"intro"];
18 //        
19 //        //使用KVC
20 //        [self setValuesForKeysWithDictionary:dict];
21 //    }
22 //    return self;
23 //}
24 //
25 //+(instancetype)herosWithDict:(NSDictionary *)dict
26 //{
27 //    return [[self alloc]initWithDict:dict];
28 //}
29 YYinitM(hero)
30 @end

主控制器 YYViewController.m文件

  1 //
  2 //  YYViewController.m
  3 //  10-英雄展示(数据刷新)
  4 //
  5 //  Created by apple on 14-5-29.
  6 //  Copyright (c) 2014年 itcase. All rights reserved.
  7 //
  8 
  9 #import "YYViewController.h"
 10 #import "YYheros.h"
 11 
 12 @interface YYViewController ()<UITableViewDataSource,UIAlertViewDelegate,UITableViewDelegate>
 13 @property (strong, nonatomic) IBOutlet UITableView *tableview;
 14 @property(nonatomic,strong)NSArray *heros;
 15 @end
 16 
 17 @implementation YYViewController
 18 
 19 - (void)viewDidLoad
 20 {
 21     [super viewDidLoad];
 22     //设置数据源
 23     self.tableview.dataSource=self;
 24     self.tableview.delegate=self;
 25     self.tableview.rowHeight=60.f;
 26     NSLog(@"%d",self.heros.count);
 27 }
 28 
 29 #pragma mark -懒加载
 30 -(NSArray *)heros
 31 {
 32     if (_heros==nil) {
 33         
 34         NSString *fullpath=[[NSBundle mainBundle]pathForResource:@"heros.plist" ofType:nil];
 35         NSArray *temparray=[NSArray arrayWithContentsOfFile:fullpath];
 36         
 37         NSMutableArray *arrayM=[NSMutableArray array];
 38         for (NSDictionary *dict in temparray) {
 39             YYheros *hero=[YYheros herosWithDict:dict];
 40             [arrayM addObject:hero];
 41         }
 42         _heros=[arrayM mutableCopy];
 43     }
 44     return _heros;
 45 }
 46 
 47 #pragma mark- tableview的处理
 48 //多少组
 49 -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
 50 {
 51     return 1;
 52 }
 53 //多少行
 54 -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
 55 {
 56     return self.heros.count;
 57 }
 58 //每组每行的数据,设置cell
 59 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 60 {
 61     //NSLog(@"cellForRowAtIndexPath 修改的了 %d", indexPath.row);
 62     //1.去缓存中取
 63     static NSString *identifier=@"hero";
 64     UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:identifier];
 65     //2.如果没有,那么就自己创建
 66     if (cell==nil) {
 67         NSLog(@"chuangjiancell");
 68         cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
 69     }
 70     //3.设置数据
 71     
 72     //3.1拿到该行的模型
 73     YYheros *hero=self.heros[indexPath.row];
 74     cell.textLabel.text=hero.name;
 75     cell.imageView.image=[UIImage imageNamed:hero.icon];
 76     cell.detailTextLabel.text=hero.intro;
 77     //4.返回cell
 78     return cell;
 79 }
 80 
 81 #pragma mark-数据刷新
 82 //1.弹出窗口,拿到数据
 83 //当某一行被选中的时候调用该方法
 84 -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
 85 {
 86     //拿到改行的数据模型
 87     YYheros *hero=self.heros[indexPath.row];
 88     UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"修改数据" message:nil delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
 89     
 90     //密码框形式的
 91     //alert.alertViewStyle=UIAlertViewStyleSecureTextInput;
 92     alert.alertViewStyle=UIAlertViewStylePlainTextInput;
 93     UITextField *text=[alert textFieldAtIndex:0];
 94     //把当前行的英雄数据显示到文本框中
 95     text.text=hero.name;
 96     alert.tag=indexPath.row;
 97     [alert show];
 98 }
 99 //2.修改数据,完成刷新操作
100 -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
101 {
102     //1.修改模型
103     //如果选中的是取消,那么就返回,不做任何操作
104     if (0==buttonIndex) return;
105     //否则就修改模型,刷新数据
106     YYheros *hero=self.heros[alertView.tag];
107     
108     //拿到当前弹窗中的文本数据(已经修改后的数据)
109     UITextField *text=[alertView textFieldAtIndex:0];
110     //用修改后的数据去修改模型
111     hero.name=text.text;
112    
113     //2.刷新数据
114     // 只要调用tableview的该方法就会自动重新调用数据源的所有方法
115     // 会自动调用numberOfSectionsInTableView
116     // 会自动调用numberOfRowsInSection
117     // 会自动调用cellForRowAtIndexPath
118     //    [self.tableview reloadData];
119     
120     // 刷新指定行
121        NSIndexPath *path = [NSIndexPath indexPathForRow:alertView.tag inSection:0];
122         [self.tableview reloadRowsAtIndexPaths:@[path] withRowAnimation:UITableViewRowAnimationRight];
123     //如果不进行刷新会怎么样?(修改之后不会即时刷新,要等到重新对cell进行数据填充的时候才会刷新)
124 }
125 //隐藏状态栏
126 -(BOOL)prefersStatusBarHidden
127 {
128     return YES;
129 }
130 @end

四、把常用的代码封装成一个带参数的宏

封装方法和代码:

 1 //
 2 //  Global.h
 3 //  10-英雄展示(数据刷新)
 4 //
 5 //  Created by apple on 14-5-29.
 6 //  Copyright (c) 2014年 itcase. All rights reserved.
 7 //
 8 
 9 #ifndef _0____________Global_h
10 #define _0____________Global_h
11 
12 /**
13  *  自定义带参数的宏
14  */
15 #define     YYinitH(name)   -(instancetype)initWithDict:(NSDictionary *)dict;\
16 +(instancetype)herosWithDict:(NSDictionary *)dict;
17 
18 
19 #define     YYinitM(name)  -(instancetype)initWithDict:(NSDictionary *)dict\
20 {\
21     if (self=[super init]) {\
22         [self setValuesForKeysWithDictionary:dict];\
23     }\
24     return self;\
25 }\
26 \
27 +(instancetype)herosWithDict:(NSDictionary *)dict\
28 {\
29     return [[self alloc]initWithDict:dict];\
30 }\
31 
32 #endif

以后在需要使用的时候,只需要使用宏即可。

如在YYheros.m文件中使用YYinitM(hero)这一句代码可以代替下面的代码段:

-(instancetype)initWithDict:(NSDictionary *)dict
{
    if (self=[super init]) {
//        self.name=dict[@"name"];
//        self.icon=dict[@"icon"];
//        self.intro=dict[@"intro"];
        
        //使用KVC
        [self setValuesForKeysWithDictionary:dict];
    }
    return self;
}

+(instancetype)herosWithDict:(NSDictionary *)dict
{
    return [[self alloc]initWithDict:dict];
}

五、注意点

1.刷新数据的两个步骤:

1)修改模型

2)刷新表格数据(可以全部刷新,也可以刷新指定的行)

2.在主控制器文件中,遵守了三个协议

分别是:

UITableViewDataSource,

UIAlertViewDelegate,

UITableViewDelegate

 

 

目录
相关文章
|
22天前
|
iOS开发 开发者 MacOS
深入探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】 本文将带领读者深入了解Apple最新推出的SwiftUI框架,这一革命性的用户界面构建工具为iOS开发者提供了一种声明式、高效且直观的方式来创建复杂的用户界面。通过分析SwiftUI的核心概念、主要特性以及在实际项目中的应用示例,我们将展示如何利用SwiftUI简化UI代码,提高开发效率,并保持应用程序的高性能和响应性。无论你是iOS开发的新手还是有经验的开发者,本文都将为你提供宝贵的见解和实用的指导。
117 66
|
8天前
|
存储 监控 API
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
|
1月前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
|
1月前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
2月前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。
|
物联网 Android开发 iOS开发
iOS开发 - 蓝牙学习的总结
iOS开发 - 蓝牙学习的总结
193 0
|
iOS开发
IOS开发---菜鸟学习之路--(十二)-利用ASIHTTPRequest进行异步获取数据
想要实现异步获取的话我这边了解过来有两个非常简单的方式 一个是利用ASIHTTPRequest来实现异步获取数据 另一个则是利用MBProgressHUD来实现异步获取数据 本章就先来讲解如何利用ASIHTTPRequest类来实现异步数据获取 首先大家需要百度一下ASIHTTPRequest 然后看一下百度里搜到的那些文章(不要问具体是那篇,因为我发现百度搜过来的东西全部都是一样的,所以。
1014 0
|
iOS开发
IOS开发---菜鸟学习之路--(十三)-利用MBProgressHUD进行异步获取数据
本章将介绍如何利用MBProgressHUD实现异步处理数据。 其实我本来只是像实现一个加载数据时提示框的效果,然后问了学长知道了这个类,然后就使用了 接着就发现了一个“BUG” 再然后就发现原来MBProgressHUD处理数据的时候是异步处理的 而所谓的“BUG”其实是在我实现了ASIFormDataRequest 异步处理数据后 又利用MBProgressHUD来显示加载数据框所导致的。
1082 0
|
iOS开发 数据格式 JSON
IOS开发---菜鸟学习之路--(八)-实现新闻页面
本章将具体讲述如何结合前两张的内容最终实现一个新闻页面的雏形 之所以称之为雏形,是因为本章实现的内容只是实现了最基础的效果 还有很多其他诸如下拉刷新 页面导航等效果都需要投入一些时间进行研究  好了直接开始整题吧 首先在我们需要新建一个ViewController 同时呢需要勾选 需要创建X...
1068 0
|
iOS开发
IOS开发---菜鸟学习之路--(九)-利用PullingRefreshTableView实现下拉刷新
本章主要讲解如何利用PullingRefreshTableView实现下拉(上拉)刷新的操作  PullingRefreshTableView 实现上下拉刷新的例子百度有很多,大家可以自己搜索下,先看下那些例子(一般搜索过来的都是一样的大家反正先把那部分内容先了解一下,然后再看本文档比较好。
895 0