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

如新闻频道滑动切换的代码

时间:2017-05-06 20:48:33      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:nsstring   uiview   sdn   span   xpath   array   return   ati   for   

效果:

技术分享


collectionView的数据源方法

- (UICollectionViewCell *) collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath

{

    newsCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"news" forIndexPath:indexPath];

    NSString *urlString = self.arrayList[indexPath.item];

    if (![self.childViewControllers containsObject:cell.newsVc]) {

        [self addChildViewController:(UIViewController *)cell.newsVc];

    }

    cell.urlStr = urlString;

    return cell;

}


cell的自己定义例如以下

- (void)setUrlStr:(NSString *)urlStr

{

    _urlStr = urlStr;

    self.newsVc.urlStr = urlStr;

}

- (void)awakeFromNib

{

    UIStoryboard *sb = [UIStoryboard storyboardWithName:@"news" bundle:nil];

    self.newsVc = sb.instantiateInitialViewController;

    // 设置 view frame,否则,view frame 的大小不会调整!

    self.newsVc.view.frame = self.bounds;

    

    // vc 的视图加入到 cell

    [self addSubview:self.newsVc.view];

}


如新闻频道滑动切换的代码

标签:nsstring   uiview   sdn   span   xpath   array   return   ati   for   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/6817913.html

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