0
我想用這個項目後,最新修訂:由於沒有采用吊艙
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
但莢文件夾下的文件裏面,我沒有看到最新的代碼,但它爲我們帶來最新的版本(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的項目有一些問題?