1,仅加载图片,图像数据不会缓存。NSString *path = [[NSBundle mainBundle] pathForResource:@”icon” ofType:@”png”]; UIImage *image = [UIImage imageWithContentsOfFile:pa....
分类:
其他好文 时间:
2014-06-28 11:43:47
阅读次数:
177
//等比率缩放- (UIImage *)scaleToSize:(UIImage *)img size:(CGSize)size{ // 创建一个bitmap的context // 并把它设置成为当前正在使用的context UIGraphicsBeginImag...
分类:
其他好文 时间:
2014-06-25 17:41:52
阅读次数:
147
[_handoutButton setImage: [UIImage imageNamed:IMG_PUBLIC_VideoView_Handout] forState:UIControlStateNormal];[_handoutButton setImage: [UIImage imageNam...
分类:
其他好文 时间:
2014-06-25 16:37:09
阅读次数:
156
加入 CoreImage.framework CoreGraphic.framework 等库
在使用时引入:#import
,支持iOS 5.0 及以上。
-(void)show
{
UIImage* img = [self
getBlurImage:[UIImage
imageNamed:@"Default...
分类:
移动开发 时间:
2014-06-24 17:23:41
阅读次数:
297
// JSON & XML解析及代码块封装
// Created by apple on 13-10-10.
/*
异步加载网络图像的内存缓存解决方法
1. 在对象中定义一个UIImage
2. 在控制器中,填充表格内容时,判断UIImage是否存在内容
1> 如...
分类:
移动开发 时间:
2014-06-24 15:33:10
阅读次数:
354
//类方法 图片 转换为二进制+(NSData *)Image_TransForm_Data:(UIImage *)image{ NSData *imageData = UIImageJPEGRepresentation(image , 0.5); //几乎是按0.5图片大小就降到原来...
分类:
移动开发 时间:
2014-06-24 08:58:06
阅读次数:
334
iOS知识点大纲Xcode使用 1. 创建UI工程基本控件 2. UILabel标签 3. UIButton按钮 项目: 计算器项目 4. UIImageView(UIImage) 项目: 人人界面 5. UIView 视图+触摸 项目: 人人界面 6. UITextFi...
分类:
移动开发 时间:
2014-06-21 14:11:14
阅读次数:
288
使图片与背景融为一体原始图片 + 显示时的图片例子1例子2例子3作为mask用的图:原理:1. 一个mask用来只显示图片边缘2. 取图片平均颜色并给这个mask赋值3. 将背景色设置成平均色4. 将要显示的图片放置在mask的下面 // 获取显示图片 UIImage *showImag...
分类:
其他好文 时间:
2014-06-21 11:24:25
阅读次数:
299
UIImage这个对象是swift中的图像类,可以使用UIImageView加载显示到View上。以下是UIImage的构造函数: init(named name: String!) -> UIImage // load from main bundle init(named name:...
分类:
其他好文 时间:
2014-06-18 12:49:16
阅读次数:
244
1.增加一个旋转动画 UIImage *loadImage = [UIImageimageNamed:@"detailLoad.png"]; UIImageView *loadImageView = [[[UIImageViewalloc]initWithImage:loadImage ]auto....
分类:
其他好文 时间:
2014-06-17 20:03:06
阅读次数:
210