Skip to content

Commit

Permalink
Removing wrong char that made Xcode crash
Browse files Browse the repository at this point in the history
  • Loading branch information
vilanovi committed Feb 24, 2015
1 parent 466f34a commit 018a12c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions UIImage+Additions.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ typedef enum __ADDImageGradientDirection
* Creates an image of 1x1 points of the given color.
* @param color The color.
* @return An image instance for the given color.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
**/
+ (UIImage*)add_imageWithColor:(UIColor*)color;

Expand All @@ -128,7 +128,7 @@ typedef enum __ADDImageGradientDirection
* @param color The color.
* @param size The size.
* @return An image instance.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
**/
+ (UIImage*)add_imageWithColor:(UIColor*)color size:(CGSize)size;

Expand All @@ -138,7 +138,7 @@ typedef enum __ADDImageGradientDirection
* @param size The size.
* @param cornerRadius The corner radius.
* @return An image instance.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
**/
+ (UIImage*)add_imageWithColor:(UIColor*)color size:(CGSize)size cornerRadius:(CGFloat)cornerRadius;

Expand All @@ -148,7 +148,7 @@ typedef enum __ADDImageGradientDirection
* @param size The size.
* @param cornerInset The corner inset.
* @return An image instance.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image.
**/
+ (UIImage*)add_imageWithColor:(UIColor*)color size:(CGSize)size cornerInset:(ADDCornerInset)cornerInset;

Expand All @@ -160,7 +160,7 @@ typedef enum __ADDImageGradientDirection
* Creates a resizable image of the given color.
* @param color The color.
* @return An image instance.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image. Also, the generated image is as small as possible.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image. Also, the generated image is as small as possible.
**/
+ (UIImage*)add_resizableImageWithColor:(UIColor*)color;

Expand All @@ -169,7 +169,7 @@ typedef enum __ADDImageGradientDirection
* @param color The color.
* @param cornerRadius The corner radius.
* @return An image instance.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image. Also, the generated image is as small as possible.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image. Also, the generated image is as small as possible.
**/
+ (UIImage*)add_resizableImageWithColor:(UIColor*)color cornerRadius:(CGFloat)cornerRadius;

Expand All @@ -178,7 +178,7 @@ typedef enum __ADDImageGradientDirection
* @param color The color.
* @param cornerInset The corner inset.
* @return A new image instance.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image. Also, the generated image is as small as possible.
* @discussion This method uses the screen density of the device to generate an appropiate pixel density image. Also, the generated image is as small as possible.
**/
+ (UIImage*)add_resizableImageWithColor:(UIColor*)color cornerInset:(ADDCornerInset)cornerInset;

Expand Down
4 changes: 2 additions & 2 deletions UIImage+Additions.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "UIImage+Additions",
"version": "2.0.0",
"version": "2.0.1",
"summary": "Adding methods to generate dynamically images from colors, adding corner radius, tinting images, etc.",
"description": "This category of UIImage add methods to generate on runtime images: from colors, adding corner radius (for each corner), tinting images, gradients, etc.",
"homepage": "https://github.com/vilanovi/UIImage-Additions",
Expand All @@ -17,7 +17,7 @@
},
"source": {
"git": "https://github.com/vilanovi/UIImage-Additions.git",
"tag": "2.0.0"
"tag": "2.0.1"
},
"source_files": "UIImage+Additions.{h,m}",
"frameworks": "UIKit",
Expand Down

0 comments on commit 018a12c

Please sign in to comment.