1
我正在使用View pager應用程序製作應用程序,我正在使用XLPagerTabStrip庫來製作它。它可以在Viewpager項目中的Title中正常工作。我想在其中添加Icon和相應的標籤。XLPagerTabStrip在IO中添加圖像和標籤Swift View Pager
我正在使用View pager應用程序製作應用程序,我正在使用XLPagerTabStrip庫來製作它。它可以在Viewpager項目中的Title中正常工作。我想在其中添加Icon和相應的標籤。XLPagerTabStrip在IO中添加圖像和標籤Swift View Pager
崩潰背後的原因是,ButtonCell.xib中缺少UIImageView。
解決辦法是:
如果imageView.superview!= {零 contentView.addSubview(ImageView的) }
4.Go回實施的頁面,並添加該代碼
func indicatorInfo(for pagerTabStripController: PagerTabStripViewController) -> IndicatorInfo {
return IndicatorInfo(title: "",image: UIImage(named: "camera.png"))
}
類
5.done
`