转载

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

tableViewHeader(上传者:帅得掉渣)

下拉tableView,header扩大,效果比普通直接拉效果好。

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

简单的历史搜索(上传者:ismilesky)

一个带有历史搜索记录的Demo,历史记录可删除,基于原生的UISerachBar

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

图片浏览器(上传者:更多_)

//通过简单设置就能实现图片浏览器效果 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;

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

正文到此结束
Loading...