IOS中对图片的处理 UIImage相信做项目时肯定会有用到 UIImage 这个类,那我们就来看一下这个类中都有什么内容。其实这篇文章就是在看文档的时候想记录一下文档中得方法。UIImage 继承于NSObject下面介绍一下UIImage中的方法首先是我们最常用的通过图片的文件名来获取这个图.....
分类:
移动开发 时间:
2014-09-04 20:52:30
阅读次数:
352
iOS项目,根据设计图,有时需要自定义UIView的UINavigationBar的背景。可以切出来一张1像素左右的背景图片,来充当UINavigationBar的背景。可以利用NavigationBar的- (void)setBackgroundImage:(UIImage *)backgroun...
分类:
移动开发 时间:
2014-09-04 13:19:09
阅读次数:
199
最终效果图:
UIImage分类,Point2Color:
//
// UIImage+Point2Color.h
// 26_popOverCtrl
//
// Created by beyond on 14-8-31.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@int...
分类:
移动开发 时间:
2014-08-31 21:30:31
阅读次数:
344
获取图片的metaData获取简易的metaData较为容易,以下是测试图:以下是本人提供的源码:UIImage+MetaData.h//// UIImage+MetaData.h// PictureInfo//// Created by YouXianMing on 14-8-27.// ...
分类:
其他好文 时间:
2014-08-31 21:25:01
阅读次数:
493
一.获取图片1. NSString *path = [[NSBuddle mainBuddle] pathForResource:@"resourceName" oftype@"resourceType"]; UIImage *image = [[UIImageimageWithContent...
分类:
其他好文 时间:
2014-08-31 13:06:31
阅读次数:
175
最终效果图:
关键代码:
UIImage分类代码
//
// UIImage+BlurGlass.h
// 帅哥_团购
//
// Created by beyond on 14-8-30.
// Copyright (c) 2014年 com.beyond. All rights reserved.
// ...
分类:
移动开发 时间:
2014-08-30 13:56:59
阅读次数:
247
我们在写轮播图片时使用系统的控件往往无法满足项目需求,因此我们就开始自定义控件了。以下是UIPageControl的自定义:#import @interface UPage : UIPageControl{ UIImage *_activeImage;//(当前页面所表示图片) UIImage .....
分类:
其他好文 时间:
2014-08-29 10:34:17
阅读次数:
189
//rightBar button UIButton *rightButton = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 34, 34)]; [rightButton setImage:[UIImage imageNamed:@"shar.....
分类:
其他好文 时间:
2014-08-28 13:06:09
阅读次数:
211
- (void)imageBg{ UIImage *oldImage = [UIImage imageNamed:@"me"]; UIGraphicsBeginImageContextWithOptions(self.view.frame.size, NO, 0.0); [oldImage dra....
分类:
移动开发 时间:
2014-08-27 21:55:28
阅读次数:
228
- (IBAction)clip { dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ // 1.捕捉 UIImage *newI...
分类:
移动开发 时间:
2014-08-27 21:45:38
阅读次数:
162