Branch | Status | Coverage |
---|---|---|
master | ||
develop |
Glide client for iOS & Mac OS X
You want to add pod 'Glide', '~> 1.0'
similar to the following to your Podfile:
target 'MyApp' do
pod 'Glide', '~> 1.0'
end
Then run a pod install
inside your terminal, or from CocoaPods.app.
#import <Glide/Glide.h>
GlideClient *glide = [[GlideClient alloc] initWithBase:@"https:images.domain.tld"];
[glide setWidth:200 andHeight:200];
NSLog(@"Url: %@", [glide absoluteString]);
Glide-objc is licensed under the MIT license.