码迷,mamicode.com
首页 >  
搜索关键字:tableview 重载数据/ 刷新cell    ( 2255个结果
ios delegate 代理模式 观察者模式 不同视图间的通信
delegate,在ios中比比皆是,NSURLConnection(网络请求有),tableView, connectionView,等系统自带 的常见代理。甚至,自己写代码的时候,随意间敲打出了protocol,根据需求,就出来了个delegate.其实也就是观察者模式的具体应用。基本的obse...
分类:移动开发   时间:2014-10-27 22:33:26    阅读次数:296
修改单元格——删除、插入、移动(IOS)
插入和删除时序: client: setEditing: animated: -----> 设定进入表视图 表视图---->委托: ()tableView:editingStyleForRowAtIndexPath:方法进行单元格编辑图标的设置 方法进行单元格编辑图标的设置 表视图---->数据源:()tableView:commiEditingStyle:forRowAtIndexPat...
分类:移动开发   时间:2014-10-27 21:23:02    阅读次数:298
UItableview
初学者的问题主要集中在,下面几个问题:一、几个函数总是不被调用:例如:- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;这个代理不被调用的种类很多:1. section的c...
分类:其他好文   时间:2014-10-27 19:20:30    阅读次数:201
iOS中tableview中headerview总保持在屏幕上方和随着屏幕滑动一起移动至消失
1 : tableview中headerview总保持在屏幕上方 :  在代理方法中创建view,并添加到headerview上 l例子: - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {     if ([self.title isEqualToString...
分类:移动开发   时间:2014-10-27 17:46:17    阅读次数:427
tableview小结
初学者的问题主要集中在,下面几个问题: 一、几个函数总是不被调用:例如: - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section; 这个代理不被调用的种类很多: 1. section的count没有正确 2. 没有设置代理 3.如果没有设置seciton的高度,仍然...
分类:其他好文   时间:2014-10-27 14:25:20    阅读次数:120
如何取消TableViewCell的选中状态
在UITableView里面,选择了某一个cell以后,点击立刻取消该cell的选中状态,可以使用如下方法:- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ //s...
分类:其他好文   时间:2014-10-26 11:32:06    阅读次数:186
添加索引(IOS开发)
索引是用来辅助查询。 原则: - 索引标题不能与显示的标题完全一样; - 索引应该具有一定的代表性,能够代表一个数据集合; - 如果采用了索引列表视图,一般情况下就不再使用扩展视图。(容易点到) 会重新到的数据源方法: tableView: numberOfRowsInSection: ------获取某节的行数 tableView:cellForRowAtIndexPath: --...
分类:移动开发   时间:2014-10-25 21:31:53    阅读次数:241
TabviewCell的多分区实现
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{//返回两个分区 return 2;}-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSect....
分类:其他好文   时间:2014-10-24 20:33:09    阅读次数:142
多视图控制器 (一个界面需要多个tableview CollectionView时)
storyboard上创建多个viewcontroller在miancontroller上添加viewcontroller的跟视图-(void)viewDidLoad{[superviewDidLoad];self.navigationController.navigationBar.translucent=NO;//createandaddourtwochildrenviewcontrollersfromourstoryboardself.child1=[self.storyboa..
分类:其他好文   时间:2014-10-24 16:45:51    阅读次数:123
自定义单元格(IOS)
自定义单元格有三种方法 - 代码实现 - xib - storyboard(推荐) 在故事板中操作方法为 1、在TableView属性的Prototype Cells设置为1,默认为1; 2、需要创建自定义的单元格类; 3、设定Table View Cell的Class为自定义类; 自定义类:(并不难) #import "CustomCell.h" @implement...
分类:移动开发   时间:2014-10-24 14:37:05    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!