CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Objective C++Objective C++ |
License | MIT |
ReleasedLast Release | Jun 2015 |
Maintained by Marco Sero.
A ComponentKit extension to add fade transitions.
Add CKComponentFadeTransition
in your Podfile.
When using CKNetworkImageComponent
to download images in your components tree, instead of using the default
+ (instancetype)newWithURL:(NSURL *)url
imageDownloader:(id<CKNetworkImageDownloading>)imageDownloader
scenePath:(id)scenePath
size:(const CKComponentSize &)size
options:(const CKNetworkImageComponentOptions &)options
attributes:(const CKViewComponentAttributeValueMap &)attributes;
use the new
+ (instancetype)newWithURL:(NSURL *)url
imageDownloader:(id<CKNetworkImageDownloading>)imageDownloader
scenePath:(id)scenePath
size:(const CKComponentSize &)size
options:(const CKNetworkImageComponentOptions &)options
attributes:(const CKViewComponentAttributeValueMap &)attributes
fadeTransition:(const CKComponentFadeTransition)fadeTransition;
specifying the duration of the transition in the CKComponentFadeTransition
struct.