你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發基礎 >> 源碼推薦(05.14):tableViewHeader,簡單的歷史搜索

源碼推薦(05.14):tableViewHeader,簡單的歷史搜索

編輯:IOS開發基礎

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;

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved