We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
下来箭头不显示,可否用下面代码解决
fileprivate let imageView: UIImageView = { let imageView = UIImageView.init() if /* Carthage */ let bundle = Bundle.init(identifier: "com.eggswift.CRRefresh") { imageView.image = UIImage(named: "refresh_arrow", in: bundle, compatibleWith: nil) } else if /* CocoaPods */ let bundle = Bundle.init(identifier: "org.cocoapods.CRRefresh") { imageView.image = UIImage(named: "NormalHeader.bundle/images/refresh_arrow", in: bundle, compatibleWith: nil) } else /* Manual */ { imageView.image = UIImage(named: "refresh_arrow") } // imageView.image = crBundle?.imageFromBundle("refresh_arrow") return imageView }()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
下来箭头不显示,可否用下面代码解决
The text was updated successfully, but these errors were encountered: