UITableView
zani515
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
drop-shadows-in-uitableview
http://rowboatrevolution.com/2009/06/drop-shadows-in-uitableview/http://cocoawithlove.com/2009/08/adding-shadow-effects-to-uitableview.html原创 2011-05-12 14:01:17 · 118 阅读 · 0 评论 -
获取UITableView的contentSize方法
-(float)getTableViewHeight{ [self.tableView layoutIfNeeded]; return self.tableView.contentSize.height;} 需要先layoutInfNeeded原创 2011-05-18 15:25:40 · 735 阅读 · 0 评论 -
UITableViewCell 长按事件
UILongPressGestureRecognizer *lpgr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; lpgr.minimumPressDuration = 1.0; //seconds lpg...原创 2011-05-31 16:31:26 · 155 阅读 · 0 评论 -
UITableView阴影
CGColorRef darkColor = [[UIColor blackColor] colorWithAlphaComponent:.5f].CGColor; CGColorRef lightColor = [UIColor clearColor].CGColor; //Footer shadow UIView *footerShadow = [[UIView all...原创 2011-10-09 22:31:32 · 210 阅读 · 0 评论 -
设置UITableView sectionIndexTitlesForTableView 中有search icon
只要在- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView的array中加入UITableViewIndexSearch原创 2011-10-11 21:11:16 · 1363 阅读 · 0 评论 -
UITableViewCell的背景
http://haoxiang.org/2010/12/uitableviewcell-background/ UITableViewCell是一个很常用的View,通常我们都是直接使用它。- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath...原创 2012-08-14 16:12:27 · 132 阅读 · 0 评论 -
UITableViewStyleGrouped下自定义selectedBackgroundView
+(void)roundCorners:(UIRectCorner)corners forView:(UIView *)view { UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view.bounds ...原创 2013-07-18 08:27:40 · 236 阅读 · 0 评论
分享