- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ //1.取消选中这一行 [tableView
deselectRowAtIndexPath:indexPath.....
分类:
其他好文 时间:
2014-07-22 22:59:54
阅读次数:
216
UIScrollView的几个要点总结:从你的手指touch屏幕开始,scrollView开始一个timer,如果:
1. 150ms内如果你的手指没有任何动作,消息就会传给subView。
2. 150ms内手指有明显的滑动(一个swipe动作),scrollView就会滚动,消息不会传给subView,这里就是产生问题二的原因。
3. 150ms内手指没有滑动,scrollView将...
分类:
其他好文 时间:
2014-05-01 18:07:00
阅读次数:
311
-
(UITableViewCellEditingStyle)tableView:(UITableView *)tableView
editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
returnUITableViewCellEdit...
分类:
移动开发 时间:
2014-05-01 13:30:30
阅读次数:
385
【UITableView.separatorInset】
separatorInset指定每行row之间的分隔线的长度,iOS7.0后提供,官方文档如下: 示例截图如下,分隔线没有紧贴着左右边界:
分类:
其他好文 时间:
2014-05-01 11:58:30
阅读次数:
282
【转】-
(UITableViewCellEditingStyle)tableView:(UITableView *)tableView
editingStyleForRowAtIndexPath:(NSIndexPath
*)indexPath{returnUITableViewCellEditi...
分类:
其他好文 时间:
2014-05-01 11:57:48
阅读次数:
292
希望这个从UITableViewDelegate协议里得到的方法可以对你有所帮助:- (UIView
*) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{ UIView *headerVi....
分类:
移动开发 时间:
2014-04-29 23:10:47
阅读次数:
809
- (UITableViewCell *)tableView:(UITableView
*)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString
*cellindentifier=@"...
分类:
移动开发 时间:
2014-04-29 19:55:42
阅读次数:
604
//// RootViewController.m// uitableview////
Created by liyang on 14-4-27.// Copyright (c) 2014年 liyang. All rights
reserved.//#import "RootViewCo...
分类:
移动开发 时间:
2014-04-28 06:09:42
阅读次数:
678
//// RootViewController.m// uitableview////
Created by liyang on 14-4-27.// Copyright (c) 2014年 liyang. All rights
reserved.//#import "RootViewCo...
分类:
移动开发 时间:
2014-04-28 03:28:08
阅读次数:
606