最近在使用UITableViewController,想在上面添加一个固定的视图,不随ScrollView滑动而移动.最后找到2种解决办法,一种是计算TableView的偏移,调整视图的位置,不断更新视图,从而达到相对静止.使用UIScrollViewDelegate里的方法-(void)scrol...
分类:
其他好文 时间:
2015-02-03 09:26:02
阅读次数:
160
iOS UITableViewCell UITableVIewController 纯代码开发 1.纯代码 自定义UITableViewCell 直接上代码//////#import @interface CodeTableViewCell : UITableViewCell@property...
分类:
移动开发 时间:
2015-01-26 15:02:42
阅读次数:
555
一、 点击此连链接下载资源文件,将EGORefreshTableHeaderView.h、EGORefreshTableHeaderView.m两个文件,以及Enormego提供的那一套图片包拖进你的工程里。二、找到你的 UITableViewController 的 .h 文件,添加相应的代码:#...
分类:
移动开发 时间:
2015-01-26 13:28:56
阅读次数:
264
UITableViewController目录概述UITableViewUITableViewCell与UITableViewController相关的代理UITableViewDataSourceUITableViewDelegateUITableViewController的常用操作选中单元格编...
分类:
其他好文 时间:
2015-01-24 12:54:52
阅读次数:
189
在UITableViewController中,通过滑动删除按钮删除一行,首先收到Table view data source call:tableView:commitEditingStyle:forRowAtIndexPath在这个调用中,需要首先删除数据,再删除界面上该行:NSMutableA...
分类:
其他好文 时间:
2015-01-22 15:17:33
阅读次数:
198
#import #import "RQHAppDelegate.h"@interface MainTableViewController : UITableViewController{ NSMutableArray *_peoples; RQHAppDelegate *_appDele...
分类:
移动开发 时间:
2015-01-12 20:55:01
阅读次数:
152
#import @interface ViewController : UITableViewController{ NSMutableArray *timeArray; UIRefreshControl *refresh; }@property (strong,nonatomic)NSMuta.....
分类:
其他好文 时间:
2015-01-10 11:15:12
阅读次数:
209
下面大致介绍一下UIRefreshControl的使用1、使用范围如果你装了xcode_4.5_developer_preview,那么在UITableViewController.h文件中你会看到,UITableViewController里面有如下声明,说明UITableViewControll...
分类:
其他好文 时间:
2015-01-06 20:00:16
阅读次数:
237
APP主流UI框架结构:通过UITabBarController和UINavigationController来搭建仿QQ框架结构:1、搭建如上图界面:一个UITabBarController,4个UINavigationController以及4个UITableViewController;2、搭...
分类:
移动开发 时间:
2015-01-04 18:42:55
阅读次数:
236
需求:类似于微博内容页面的展示,内容包括有头像、呢称、会员标志、微博内容、微博图片(可有可没有)。具体效果图:实例的文件结构:实现的具体步骤:1、自定义数据模型类,并测试数据是否能正常加载;2、设置storyBoard,把UIViewController改为UITableViewController...
分类:
其他好文 时间:
2015-01-04 01:08:49
阅读次数:
306