当前位置:  开发笔记 > IOS > 正文

XLPagerTabStrip在IOs Swift View Pager中添加图像和标签

如何解决《XLPagerTabStrip在IOsSwiftViewPager中添加图像和标签》经验,为你挑选了1个好方法。

我正在使用View寻呼机应用程序制作应用程序,我正在使用XLPagerTabStrip库来制作它.它在Viewpager项目中与Title一起使用.我想在其中添加Icon和相应的Label.



1> Jaisan Mathe..:

崩溃背后的原因是,ButtonCell.xib中缺少UIImageView.

解决方案是:

    打开ButtonBarViewCell类,从xcode的顶部导航菜单中,单击ButtonBarViewCell.可以看到ButtonCell.xib.

    打开ButtonCell.xib,将UIImage视图拖放到单元格的中心.应用Constrains并将其连接到IBOutlet imageView.

    回到ButtonBarViewCell类并在func willMove(toSuperview newSuperview:UIView?)函数中添加这行代码.

如果imageView.superview!= nil {contentView.addSubview(imageView)}

4.返回实现页面的类并添加此代码

 func indicatorInfo(for pagerTabStripController: PagerTabStripViewController) -> IndicatorInfo {
    return IndicatorInfo(title: "",image: UIImage(named: "camera.png"))
}  

5.done

`

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有