码迷,mamicode.com
首页 >  
搜索关键字:tableview 重载数据/ 刷新cell    ( 2255个结果
一个tableView,两个section
效果图:.h#import @interface RootViewController : UIViewController{ UITableView *mTableView;}@end.m- (void)viewDidLoad{ [super viewDidLoad]; // D...
分类:其他好文   时间:2014-10-17 13:39:00    阅读次数:166
tableview获取选中cell对象
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{                    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];             ...
分类:其他好文   时间:2014-10-17 11:55:33    阅读次数:136
scrollView用法
在这里记下UIScrollView的用法,一来防止自己忘记,而来再通过这个回顾一下,发现一些新细节。UIScrollView的主要问题在布局上,我现在只用到了内容大小固定额也就是不是tableView 的动态可变界面布局方面scrollView的限制是 四个边都要设置据self.view为0,且sc...
分类:其他好文   时间:2014-10-16 17:56:22    阅读次数:992
KVC与KVO
导读下面是根据网上文章的总结,方便查看。在网上看别人的文章,了解KVC、KVO,有个kvo-kvc的例子,就是改变数组的内容(插入和删除),同步改变tableview中的内容。运行了代码之后,想添加修改数组时改变tableview内容,但是一直不能调用观察函数,后来又查了点资料,原来,数组的kvc是...
分类:其他好文   时间:2014-10-16 16:38:32    阅读次数:341
为数据表对象(NSManagedObject)添加排序
eg:数据库表对象 @interface Meditation : NSManagedObject @property (nonatomic, retain) NSString * order;//用来排序的属性值,用0、1、2、3...排序 @end //在这个方法里操作 - (void)tableView:(UITableView *)tableView ...
分类:编程语言   时间:2014-10-15 18:22:01    阅读次数:113
推荐收听(左右两个tableView,点击左侧的tableView,右侧的tableView内容会变化)
效果图:代码:.h#import @interface RootViewController : UIViewController{ //列表 UITableView * _tableViewList; //显示内容 UITableView * _tableViewMembe...
分类:其他好文   时间:2014-10-15 16:39:21    阅读次数:204
取消TableViewCell选中状态的外观变化
tabelViewcell 使用Xib创建自定义外观的时候,在tableview选中的时候,cell的外观会发生变化,在定义Xib中如下图将选中的外观状态取消掉也有其他选项,可以选择控制选中的时候的外观
分类:其他好文   时间:2014-10-15 12:55:00    阅读次数:145
去掉UITableView HeaderView或FooterView随tableView 移动的黏性
去掉UITableView HeaderView或FooterView随tableView 移动的黏性(sticky)控制器中实现以下方法即可: 1 - (void)scrollViewDidScroll:(UIScrollView *)scrollView { 2 3 CGFloat s...
分类:移动开发   时间:2014-10-14 19:22:29    阅读次数:356
UIScrollerView里有2个tableView
两个tableView是可以左右滑动的。两个tableView放在一个scrollerView上,可以,左右滑动。上代码。.h#import @interface RootViewController : UIViewController{ UIScrollView *_scrolView; ...
分类:其他好文   时间:2014-10-14 19:22:02    阅读次数:195
TableView有3个section,每个都有header.同时EGOTableViewPullRefresh刷新数据
效果图:代码:.h#import #import "EGORefreshTableHeaderView.h"@interface RootViewController : UIViewController{ UITableView *_tableView; EGORefreshTable...
分类:其他好文   时间:2014-10-14 18:21:49    阅读次数:136
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!