效果图:.h#import @interface RootViewController : UIViewController{ UITableView *mTableView;}@end.m- (void)viewDidLoad{ [super viewDidLoad]; // D...
分类:
其他好文 时间:
2014-10-17 13:39:00
阅读次数:
166
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
...
分类:
其他好文 时间:
2014-10-17 11:55:33
阅读次数:
136
在这里记下UIScrollView的用法,一来防止自己忘记,而来再通过这个回顾一下,发现一些新细节。UIScrollView的主要问题在布局上,我现在只用到了内容大小固定额也就是不是tableView 的动态可变界面布局方面scrollView的限制是 四个边都要设置据self.view为0,且sc...
分类:
其他好文 时间:
2014-10-16 17:56:22
阅读次数:
992
导读下面是根据网上文章的总结,方便查看。在网上看别人的文章,了解KVC、KVO,有个kvo-kvc的例子,就是改变数组的内容(插入和删除),同步改变tableview中的内容。运行了代码之后,想添加修改数组时改变tableview内容,但是一直不能调用观察函数,后来又查了点资料,原来,数组的kvc是...
分类:
其他好文 时间:
2014-10-16 16:38:32
阅读次数:
341
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
效果图:代码:.h#import @interface RootViewController : UIViewController{ //列表 UITableView * _tableViewList; //显示内容 UITableView * _tableViewMembe...
分类:
其他好文 时间:
2014-10-15 16:39:21
阅读次数:
204
tabelViewcell 使用Xib创建自定义外观的时候,在tableview选中的时候,cell的外观会发生变化,在定义Xib中如下图将选中的外观状态取消掉也有其他选项,可以选择控制选中的时候的外观
分类:
其他好文 时间:
2014-10-15 12:55:00
阅读次数:
145
去掉UITableView HeaderView或FooterView随tableView 移动的黏性(sticky)控制器中实现以下方法即可: 1 - (void)scrollViewDidScroll:(UIScrollView *)scrollView { 2 3 CGFloat s...
分类:
移动开发 时间:
2014-10-14 19:22:29
阅读次数:
356
两个tableView是可以左右滑动的。两个tableView放在一个scrollerView上,可以,左右滑动。上代码。.h#import @interface RootViewController : UIViewController{ UIScrollView *_scrolView; ...
分类:
其他好文 时间:
2014-10-14 19:22:02
阅读次数:
195
效果图:代码:.h#import #import "EGORefreshTableHeaderView.h"@interface RootViewController : UIViewController{ UITableView *_tableView; EGORefreshTable...
分类:
其他好文 时间:
2014-10-14 18:21:49
阅读次数:
136