版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、#import <UIKit/UIKit.h>interface ContactViewController : UITableViewControllerend#import "ContactViewController.h"#import "Person.h" /人的模型#import "HerosCel
2、l.h" /男#import "ScrollCell.h" /女#import "ViewController.h" &
3、#160; /跳转页面interface ContactViewController ()property (nonatomic,retain)NSMutableDictionary *dataSource;property (nonatomic,retain)NSMutableArray *orderAry;property (nonatomic,copy)NSString *str;
4、160; /传哪个值endimplementation ContactViewController- (NSMutableDictionary *)dataSource if (!_dataSource) self.dataSource = NSMutableDictionary dictionary; return _dataSource retain autor
5、elease;- (NSString *)str if (!_str) self.str = "name" return _str retain autorelease;- (NSMutableArray *)orderAry if (!_orderAry) s
6、elf.orderAry = NSMutableArray array; return _orderAry retain autorelease;- (void)viewDidLoad super viewDidLoad; / Uncomment the following line to preserve selection between presentations. /
7、self.clearsSelectionOnViewWillAppear = NO; / Uncomment the following line to display an Edit button in the navigation bar for this view controller. / self.navigationItem.rightBarButtonItem = self.editButtonItem;
8、; self readDataPlist; - (IBAction)handleSegment:(UISegmentedControl *)sender self.str = sender titleForSegmentAtIndex:sender.selectedSegmentIndex;- (void)readDataPlist NSString *path = NSBundle mainBundle pathForResource:"yingxiong" ofT
9、ype:"plist" NSDictionary *dict = NSDictionary dictionaryWithContentsOfFile:path; for (NSString *str in dict) NSMutableArray *mArray = NSMutableArray array;
10、160; for (NSDictionary *aHeros in dictstr) Person *person = Person alloc initWithName:aHeros; mArray addObject:person; &
11、#160; self.dataSource setObject:mArray forKey:str; NSArray *ary = dict.allKeys sortedArrayUsingSelector:selector(compare:); for (NSString *str in ary)
12、60; self.orderAry addObject:str; - (void)didReceiveMemoryWarning super didReceiveMemoryWarning; / Dispose of any resources that can be recreated.#pragma mark - Table view data source- (NSInteger)nu
13、mberOfSectionsInTableView:(UITableView *)tableView return self.orderAry.count;- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section return self.dataSourceself.orderArysection count;- (NSArray<NSString *> *)sectionIndexTit
14、lesForTableView:(UITableView *)tableView return self.orderAry;- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section return self.orderArysection;- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSI
15、ndexPath *)indexPath Person *person = self.dataSourceself.orderAryindexPath.section objectAtIndex:indexPath.row; if (person.gender isEqualToString:"女") ScrollCell *cell = tab
16、leView dequeueReusableCellWithIdentifier:"scrollCell" forIndexPath:indexPath; cell.scrollimageView.image = UIImage imageNamed:person.image; .text = ; &
17、#160; cell.type.text = person.type; return cell; else HerosCell *cell = tableView dequeueReusableCellWithIdentifier:"boyCell" forIndexPath:indexPath; cell set
18、ValueByPerson:person; return cell; - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath self performSegueWithIdentifier:"xxx" sender:nil; /*/ Ov
19、erride to support conditional editing of the table view.- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath / Return NO if you do not want the specified item to be editable. return YES;*/*/ Override to support editing the tab
20、le view.- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath if (editingStyle = UITableViewCellEditingStyleDelete) / Delete the row from the dat
21、a source tableView deleteRowsAtIndexPaths:indexPath withRowAnimation:UITableViewRowAnimationFade; else if (editingStyle = UITableViewCellEditingStyleInsert) / Create a new instance of the appropria
22、te class, insert it into the array, and add a new row to the table view */*/ Override to support rearranging the table view.- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath */*/ Override to suppo
23、rt conditional rearranging of the table view.- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath / Return NO if you do not want the item to be re-orderable. return YES;*/#pragma mark - Navigation/ In a storyboard-based applic
24、ation, you will often want to do a little preparation before navigation- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender / Get the new view controller using segue destinationViewController. / Pass the selected object to the new view controller.
25、 ViewController *view = segue.destinationViewController; UITableViewCell *cell = self.tableView cellForRowAtIndexPath:self.tableView.indexPathForSelectedRow; UILabel *label = cell valueForKey:self.str; vi
26、ew.string = label.text; end#import "ViewController.h"interface ViewController ()endimplementation ViewController- (void)viewDidLoad super viewDidLoad; / Do any additional setup after loading the view. self.label.text = self.strin
27、g; - (void)didReceiveMemoryWarning super didReceiveMemoryWarning; / Dispose of any resources that can be recreated. /*#pragma mark - Navigation/ In a storyboard-based application, you will often want to do a little preparation before navigat
28、ion- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender / Get the new view controller using segue destinationViewController. / Pass the selected object to the new view controller.*/- (void)dealloc _label release;
29、0; self.string = nil; super dealloc; end#import "ScrollCell.h"implementation ScrollCell- (void)awakeFromNib / Initialization code- (void)setSelected:(BOOL)selected animated:(BOOL)animated super setSelected:selected animated:animated;&
30、#160; / Configure the view for the selected state- (void)setValue:(id)value forUndefinedKey:(NSString *)key- (id)valueForUndefinedKey:(NSString *)key if (key isEqualToString:"gender") return ;
31、0; else return nil; - (void)dealloc _scrollimageView release; _name release; _type release; super dealloc; end#import "HerosCell.h"#import
32、"Person.h"implementation HerosCell- (void)setValueByPerson:(Person *)person self.pictureView.image = UIImage imageNamed:person.image; .text = ; self.gender.text = person.gender; self.type.text = per
33、son.type;- (void)awakeFromNib / Initialization code- (void)setSelected:(BOOL)selected animated:(BOOL)animated super setSelected:selected animated:animated; / Configure the view for the selected state- (void)dealloc _pictureView release; _name release; _g
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 民办合肥财经职业学院《会计信息系统》2025-2026学年期末试卷
- (2026年)精神科病区的组织与管理课件
- 泉州经贸职业技术学院《形式逻辑》2025-2026学年期末试卷
- 《旅游心理学》课程标准
- 闽南科技学院《商业银行经营学》2025-2026学年期末试卷
- 第十一章 第二节 学校家庭社会协同联动的心理辅导资源建设
- 2024-2025学年河北省石家庄市高邑县四年级(下)期末数学试卷 含解析
- 2026年(plc原理及应用田淑珍)期末试卷及答案
- 2026年adgj测试题及答案
- 2026年8年级下数学测试题答案
- 2026年广电工程技术笔试题(得分题)带答案详解(达标题)
- 2026年北京市海淀区高三一模生物试卷(含答案)
- 小学财务管理工作制度
- 2026年成考《中医学》试题及答案
- 2026年高考历史十校联考全真模拟试卷及答案(共七套)
- 事业单位内部监督制度
- 限额以下小型工程常见安全隐患指导手册(2026版)
- 汽轮机润滑油系统课件
- 神州数码招聘测评题答案
- 旅游景点管理与服务规范手册(标准版)
- 2025年详版征信报告个人信用报告样板模板新版可编辑
评论
0/150
提交评论