分享一个仿网易新闻客户端iPhone版的标签式导航ViewController

     该Controller是一个容器,用于容纳其他的controller。效果与网易新闻客户端的标签式导航基本一样:

   (1)点击上面的标签,可以切换到对应的controller,标签下面的红色提示条的长度会动态变化。

   (2)在下面的内容区里左滑或者右滑可以切换对应的controller,标签会同时变化。     

 

效果如下图所示:

     

使用方法:

    NSArray *titleArray = [NSArray arrayWithObjects:@"轻松一刻",@"头条",@"北京",@"房产",@"移动互联",@"财经",@"科技",@"游戏",@"历史",@"军事",@"大满贯", nil];
    
    NSMutableArray *controllerArray = [[NSMutableArray alloc]init];
    for (NSString* title in titleArray)
    {
        ViewController *vc = [[ViewController alloc]init];
        vc.labelTitle = [title stringByAppendingString:@" View Controller"];
        [controllerArray addObject:vc];
    }
    
    GuGuSegmentNaviViewController *controller = [[ GuGuSegmentNaviViewController alloc]initWithItems:titleArray andControllers:controllerArray];

 

代码下载:https://github.com/gugupluto/GuGuSegmentNaviViewController

 

 

转载于:https://www.cnblogs.com/gugupluto/p/3560133.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值