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 · 91 阅读 · 0 评论 -
获取UITableView的contentSize方法
-(float)getTableViewHeight{ [self.tableView layoutIfNeeded]; return self.tableView.contentSize.height;} 需要先layoutInfNeeded原创 2011-05-18 15:25:40 · 683 阅读 · 0 评论 -
UITableViewCell 长按事件
UILongPressGestureRecognizer *lpgr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; lpgr.minimumPressDuration = 1.0; //seconds lpg...原创 2011-05-31 16:31:26 · 119 阅读 · 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 · 170 阅读 · 0 评论 -
设置UITableView sectionIndexTitlesForTableView 中有search icon
只要在- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView的array中加入UITableViewIndexSearch原创 2011-10-11 21:11:16 · 1301 阅读 · 0 评论 -
UITableViewCell的背景
http://haoxiang.org/2010/12/uitableviewcell-background/ UITableViewCell是一个很常用的View,通常我们都是直接使用它。- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath...原创 2012-08-14 16:12:27 · 99 阅读 · 0 评论 -
UITableViewStyleGrouped下自定义selectedBackgroundView
+(void)roundCorners:(UIRectCorner)corners forView:(UIView *)view { UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view.bounds ...原创 2013-07-18 08:27:40 · 200 阅读 · 0 评论