https://github.com/euskadi31/glide-objc
Glide client for iOS & Mac OS X
https://github.com/euskadi31/glide-objc
cocoapods glide image-manipulation library
Last synced: about 1 year ago
JSON representation
Glide client for iOS & Mac OS X
- Host: GitHub
- URL: https://github.com/euskadi31/glide-objc
- Owner: euskadi31
- License: mit
- Created: 2016-02-02T17:57:26.000Z (over 10 years ago)
- Default Branch: develop
- Last Pushed: 2016-02-16T13:50:12.000Z (over 10 years ago)
- Last Synced: 2025-03-23T21:52:05.238Z (over 1 year ago)
- Topics: cocoapods, glide, image-manipulation, library
- Language: Objective-C
- Size: 82 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Glide [](https://cocoapods.org/pods/Glide)
=====
| Branch | Status | Coverage |
|---------|--------|----------|
| master | [](https://travis-ci.org/euskadi31/glide-objc) | [](https://coveralls.io/github/euskadi31/glide-objc?branch=master) |
| develop | [](https://travis-ci.org/euskadi31/glide-objc) | [](https://coveralls.io/github/euskadi31/glide-objc?branch=develop) |
[Glide](http://glide.thephpleague.com/) client for iOS & Mac OS X
## Install
You want to add `pod 'Glide', '~> 1.0'` similar to the following to your Podfile:
~~~ruby
target 'MyApp' do
pod 'Glide', '~> 1.0'
end
~~~
Then run a `pod install` inside your terminal, or from CocoaPods.app.
## Get started
~~~objc
#import
GlideClient *glide = [[GlideClient alloc] initWithBase:@"https:images.domain.tld"];
[glide setWidth:200 andHeight:200];
NSLog(@"Url: %@", [glide absoluteString]);
~~~
## License
Glide-objc is licensed under [the MIT license](LICENSE.md).