1.修改选中图片:UITabBarItem* item = [self.tabBarController.tabBar.items objectAtIndex:1]; //从0开始item.selectedImage = [UIImage imageNamed:@"ItemSelProfile"]....
分类:
其他好文 时间:
2014-11-06 23:16:35
阅读次数:
239
IOS中对图片的处理 UIImage
UIImage 继承于NSObject
下面介绍一下UIImage中的方法
首先是我们最常用的
通过图片的文件名来获取这个图片
+ (UIImage *)imageNamed:(NSString *)name
//要注意的是这个方法适用于已经导入到工程中的图片
1、+ (UIImage *)imageWithCon...
分类:
移动开发 时间:
2014-11-06 17:35:38
阅读次数:
227
//一般情况下,在声明字符串对象的时候使用 copy//UI对象使用weak//其他对象使用strong@property(nonatomic,copy)NSString *name;@property(nonatomic,weak)UIImage *image;@property(nonatomi...
分类:
其他好文 时间:
2014-11-06 00:41:24
阅读次数:
124
#import #import #import @interface UIImage (Blur)// 0.0 to 1.0- (UIImage*)blurredImage:(CGFloat)blurAmount;@end#import "UIImage+Blur.h"@implementation...
分类:
移动开发 时间:
2014-11-04 19:28:41
阅读次数:
236
#import @interface UIImage (ImageWithColor)+ (UIImage *)imageWithColor:(UIColor *)color;@end#import "UIImage+ImageWithColor.h"@implementation UIImage ...
分类:
移动开发 时间:
2014-11-04 19:22:43
阅读次数:
726
UIImage+Screenshot.h#import @interface UIImage (Screenshot)+ (UIImage *)screenshot;@end#import "UIImage+Screenshot.h"@implementation UIImage (Screensh...
分类:
移动开发 时间:
2014-11-04 18:54:52
阅读次数:
163
1.图片转base64串及反转回图片UIImage图片转成base64字符串:1 UIImage *_originImage = [UIImage imageNamed:@"full_playlist_hl.png"];2 NSData *_data = UIImageJPEGRepresentat...
分类:
移动开发 时间:
2014-11-04 10:42:25
阅读次数:
187
ios-image-filtershttps://github.com/esilverberg/ios-image-filtersphotoshop-style filter interface for UIImage class on iOS to make instagram-style ima...
分类:
移动开发 时间:
2014-11-02 08:12:12
阅读次数:
320
1、UIImageView动画帧的使用通过加载UIImage序列的图片数据,然后设定个时间实现动画播放2、UIImage的两种加载方式 UIImage imageName:fileName -----有缓存 UIImageimageWithContentsOfFile:path -----没有缓.....
分类:
其他好文 时间:
2014-11-01 17:39:06
阅读次数:
144
前言:KSImageNamed-Xcode-master工程编译完成后支持[UIImage imageNamed]图片提示功能,为UIImage写入分类后,自定义的方法就不支持图片提示了。第1步:打开KSImageNamed-Xcode-master工程第2步:在搜索栏所有imageNamed的,找...
分类:
其他好文 时间:
2014-11-01 17:35:15
阅读次数:
1226