您的位置:首页 > 其它

源码推荐(05.14):tableViewHeader,简单的历史搜索

2016-05-14 17:53 429 查看
tableViewHeader(上传者:帅得掉渣)
下拉tableView,header扩大,效果比普通直接拉效果好。


简单的历史搜索(上传者:ismilesky)
一个带有历史搜索记录的Demo,历史记录可删除,基于原生的UISerachBar


图片浏览器(上传者:更多_)
//通过简单设置就能实现图片浏览器效果
ShowImageView *showView = [[ShowImageView alloc]init];
[weakSelf.collectionView addSubview:showView];
showView.backgroundColor = [UIColor blackColor];
//消失回调
[showView setDismissBlock:^{
self.tabBarController.tabBar.hidden = NO;
self.navigationController.navigationBar.hidden = NO;
}];
self.tabBarController.tabBar.hidden = YES;
self.navigationController.navigationBar.hidden = YES;
showView.frame = CGRectMake(0,
self.collectionView.contentOffset.y,
self.collectionView.frame.size.width,
self.collectionView.frame.size.height);
showView.imageUrlArr = data.imgList;

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: