常用解決方案彙總
1、如果子檢視想push一個控制器,而子檢視中拿不到navigationController 怎麼辦
2、圖片的拉伸,當圖片被拉伸後,當前空缺的地方是copy這個設定的畫素點
3、 KVO(觀察者)的使用。
4、collectionView的邊緣值,我用的xcode7反正這個方法我是沒找到
5、用storyboard建立的cell是不用註冊也不用判斷是否為空
1、 如果子檢視想push一個控制器,而子檢視中拿不到navigationController 怎麼辦
解決辦法一
//取出根檢視控制器
UITabBarController *tabBarVc = (UITabBarController *)[UIApplication sharedApplication].keyWindow.rootViewController;
//取出當前選中的導航控制器
UINavigationController *Nav = [tabBarVc selectedViewController];
[Nav pushViewController:topDetailView animated:YES];
解決辦法二
// 給UIView 寫個分類
/** 實現子檢視push到控制器 */
- (UIViewController *)viewController {
for (UIView* next = [self superview]; next; next = next.superview) {
UIResponder* nextResponder = [next nextResponder];
if ([nextResponder isKindOfClass:[UIViewController class]]) {
return (UIViewController*)nextResponder;
}
}
return nil;
}
// 然後就可以這樣使用
[self.viewController.navigationController pushViewController:topDetailView animated:YES];
2、 圖片的拉伸,當圖片被拉伸後,當前空缺的地方是copy這個設定的畫素點
// 圖片拉伸
UIImage *image = [UIImage imageNamed:@"indexBG_home"];
UIImage *stresImage = [image stretchableImageWithLeftCapWidth:0 topCapHeight:1];
headView.image = stresImage;
3、KVO(觀察者)的使用。
// 新增觀察者
[self.smallView addObserver:self
forKeyPath:@"index" // 監聽的值
options:NSKeyValueObservingOptionNew
context:nil];
#pragma mark - 觀察者
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context {
NSInteger index = [[change objectForKey:@"new"]integerValue];
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:index inSection:0];
[UIView animateWithDuration:0.35 animations:^{
[self.posterView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:YES];
}];
}
#pragma mark - 手動移除觀察者
- (void) dealloc {
[self.smallView removeObserver:self forKeyPath:@"index"];
}
4、collectionView的邊緣值,我用的xcode7反正這個方法我是沒找到
#pragma mark - UICollectionViewDelegateFlowLayout
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
return UIEdgeInsetsMake(0, 50, 0, 50);
}
相關文章
- word未響應解決方案彙總
- 分散式事務解決方案彙總分散式
- Django常見出錯解決方案彙總Django
- 金融 App 稽核被拒原因及解決方案彙總APP
- 普通raid常見故障解和決方案彙總AI
- eclipse 中文亂碼問題解決方案彙總Eclipse
- 解壓命令unzip常用方法彙總
- EMC遇上微軟:四大產品解決方案彙總微軟
- VNC常用操作及常見問題解決辦法彙總VNC
- 常用js彙總JS
- 【彙總】Python語言常見報錯及解決方案!Python
- 分散式事務的理解和常見解決方案彙總分散式
- 「經驗彙總」基於TDengine的時序資料解決方案
- 常用函式彙總函式
- Oracle 常用方法彙總Oracle
- 常用SQL技巧彙總SQL
- 《區塊鏈常用術語解釋》彙總區塊鏈
- 佈局的常用解決方案
- Java限流及常用解決方案Java
- zabbix 小問題解決彙總
- linux 故障解決方法彙總Linux
- 資料庫分庫分表解決方案彙總資料庫
- 解決網站訪問量過大問題的常用技術彙總網站
- 阿里雲常用產品彙總及解釋阿里
- Excel常用快捷鍵彙總Excel
- MySQL常用函式彙總MySql函式
- 常用壓縮命令彙總
- PHP 常用函式彙總PHP函式
- css常用屬性彙總CSS
- My SQL常用操作彙總SQL
- oracle 常用語句彙總Oracle
- oracle常用函式彙總Oracle函式
- 常用SQL語句彙總SQL
- 常用的vi指令彙總
- MySql 常用語法彙總MySql
- AA常用函式彙總函式
- 常用工具彙總
- MySQL:網際網路公司常用分庫分表方案彙總!MySql