常用解決方案彙總

weixin_34290000發表於2016-07-22

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);
}

相關文章