当我们使用iphone手机通讯录,手机qq的时候。有一个细节大家可能已经忽略,即“分组”控件在向屏幕上方滑动时,超过屏幕的高度,就冻结到屏幕最上端。方便用户确定当前浏览的是哪个分组。当下面的分组上来时候,又会当前冻结的窗口顶上去,它自己又实现冻结!...
分类:
其他好文 时间:
2014-08-23 23:00:41
阅读次数:
258
UITableview中可以通过1 UITableView *_tableView;2 _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.fra...
分类:
移动开发 时间:
2014-08-22 16:11:18
阅读次数:
225
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{ return UITableViewCellEdit...
分类:
移动开发 时间:
2014-08-22 10:36:05
阅读次数:
246
主要思路:
1.tableView:tableView viewForHeaderInSection:section 添加一个按钮
2.点击按钮后,判断指定section的数据是否展开
3.在返回numberOfRowsInSection数量时,如果发现是收缩的,则返回0,展开时,才给真实数据的行号
这样就可以达到显示/隐含数据的效果...
分类:
移动开发 时间:
2014-08-20 16:22:34
阅读次数:
448
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell= [tableView
cellForRowAtIndexPath:indexPath]; // 获取cell
对象
UILabel *na...
分类:
移动开发 时间:
2014-08-19 11:03:04
阅读次数:
224
请求结果简单显示:
用到的点评封装的类:
使用tableView简单展示:
//
// DealListController.m
// 帅哥_团购
//
// Created by beyond on 14-8-14.
// Copyright (c) 2014年 com.beyond. All rights reserved....
分类:
移动开发 时间:
2014-08-18 12:32:34
阅读次数:
285
页面很简单,是这个样子的.在点击tableviewCell 的时候, 右面的view可以自动弹出,在该view中输入以及显示输出,将该view拖回到右边时,刷新tableview.在重新打开程序的时候内容也仍然在.下面说一下实现过程吧一.判断进入页面即判断是否存在plist文件以及版本号是否相同,在...
分类:
其他好文 时间:
2014-08-17 23:57:13
阅读次数:
429
终于效果图:方式1,用字典数组BeyondViewController.h//// BeyondViewController.h// 10_tableView//// Created by beyond on 14-7-25.// Copyright (c) 2014年 com.beyond...
分类:
移动开发 时间:
2014-08-16 20:57:01
阅读次数:
280
iphone和Ipad开发中UITableViewController和TableView应该是用得比较多得控件。但是你是会因为写这些控件写得多了而厌烦。
所有怎么让这个控件一直能用,怎么让这个控件写起来简单。是很必须。特别是UITableViewController把dataSouce的业务逻辑集成在自己身上而让看起来扎乱无章。
1.解决UITableViewController一直能用下。...
分类:
移动开发 时间:
2014-08-15 19:44:39
阅读次数:
264
Cocos2d-x CCTableView 滚动条的实现...
分类:
其他好文 时间:
2014-08-15 17:53:39
阅读次数:
264