iOS Tutorial: KTImageView
Our team has just released a new iOS tutorial (complete with downloadable sample code) for KTImageView, one of the new features of KiiToolkit.
What is KTImageView?
KTImageView is an iOS view designed specifically for Kii Cloud, which provides asynchronous download and display of an image file stored in Kii Cloud. This class is a wrapper for commonly-developed logic, and comes with progress/completion/error callbacks as well as a loading progress bar.
Implementation can be as simple as:
CGRect frame = CGRectMake(20, 20, 50, 50); KiiFile *myFile = [KiiFile fileWithURI:@""]; KTImageView *imageView = [KTImageView createWithFrame:frame andKiiFile:myFile]; [self.view addSubview:imageView];
As with all features within KiiToolkit, this view and its components are fully customizable to match the look and feel of your application.
Getting Started
Visit our full tutorial in our documentation here:
You can also get a lot more information on our GitHub project page including other detailed examples and full documentation.
This is another great tool to get your app up and running even faster with Kii Cloud, so have fun building and let us know what you think.