个人总结
文章平均质量分 73
rabby007
rabby 007
展开
-
哈02—kill error_______unable to dequeue a cell with identifier Cell
使用UITableView时经常会遇到以下错误让我们措手不及*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier Cell - must register a nib or原创 2014-01-14 09:40:20 · 892 阅读 · 0 评论 -
哈04-xcode系统自带的刷新控件UIRefreshControl
要使用该控件首先必须继承 UITableViewController1、初始化控件- (id)initWithStyle:(UITableViewStyle)style{ self = [superinitWithStyle:style]; if (self) { UIRefreshControl *fresh=[[UI原创 2014-01-14 09:55:06 · 789 阅读 · 0 评论 -
哈05-将数据历史记录存储在沙盒中
1.#define PATHS NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)#define PATH [PATHS objectAtIndex:0]#define USER_SEARCH_HISTORY_PATH [PATH stringB原创 2014-01-23 11:51:40 · 660 阅读 · 0 评论 -
哈06-自定义UITableViewCell选中效果
1、首先设置xxxxtableview.separatorStyle=UITableViewCellSelectionStyleNone;不然cell被重用后,会被还原为默认选中效果2、在- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath原创 2014-01-26 11:59:33 · 768 阅读 · 0 评论