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;