码迷,mamicode.com
首页 > 其他好文 > 详细

从Cell的视图推出一个新的界面

时间:2016-08-16 23:38:40      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

先写一个方法, 强制增加一个navigation的属性. 这样self就可以调出来navigation了

- (UINavigationController*)naviController {
    
    for (UIView* next = [self superview]; next; next = next.superview) {
        
        UIResponder* nextResponder = [next nextResponder];
        
        if ([nextResponder isKindOfClass:[UINavigationController class]]) {
            
            return (UINavigationController*)nextResponder;
        }
    }
    
    return nil;
}

 然后, 在cell的点击方法中调用这个属性, 并推出一个新的界面:

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
    
    myViewController *vc = [[myViewController alloc]init];
    
    [[self naviController] presentViewController:vc animated:YES completion:nil];
    
}

 

从Cell的视图推出一个新的界面

标签:

原文地址:http://www.cnblogs.com/mafeng/p/5778041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!