我正在尝试使用这个项目:
https://github.com/callumboddy/CBZSplashView
这是我的podfile。
target "Name" do
#pod 'CBZSplashView', '> 0.1.1'
end
这就是我所看到的:
Downloading dependencies
Installing CBZSplashView (1.0.0)
Generating Pods project
Integrating client project
但是在Pods文件夹下的文件中,我没有看到最新的代码,虽然它应该带来最新版本(1.0.0)
例如,in Github under classes我看到的代码与xcode中的代码不同。
特别是在xcode中,我没有看到这两个类,它们是在0.1.1
之后添加的+ (instancetype)splashViewWithIcon:(UIImage *)icon backgroundColor:(UIColor *)backgroundColor
{
/* This component is useless without an icon */
NSParameterAssert(icon);
return [[CBZRasterSplashView alloc] initWithIconImage:icon backgroundColor:backgroundColor];
}
+ (instancetype)splashViewWithBezierPath:(UIBezierPath *)bezier backgroundColor:(UIColor *)backgroundColor
{
return [[CBZVectorSplashView alloc] initWithBezierPath:bezier backgroundColor:backgroundColor];
}
我做错了或者Github项目有问题吗?
答案 0 :(得分:1)