这个示例程序主要用到了IOS中的UIImageView、UIImagePickerViewController、UIImage、NSFileManager等知识,结合这些知识构成一个小的应用程序,主要功能是对相册图片进行读取、存储到指定文件夹、从指定文件夹读取出来。这方面的知识在正式项目中用的是比较
分类:
移动开发 时间:
2016-03-09 10:53:06
阅读次数:
185
这段代码是实现了类似QQ空间"我的空间"里面的圆形头像 //圆形的头像 UIImageView * headImage = [[UIImageView alloc]initWithFrame:CGRectMake(100, 300, 120, 120)]; headImage.backgroundC
分类:
移动开发 时间:
2016-03-08 13:29:13
阅读次数:
164
给父视图添加背景图片 UIImageView *imgView=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"beijing"]]; //@""里面的为文件名,这样写需要将背景图片拖入工程中才可以 imgView.frame=sel
分类:
其他好文 时间:
2016-03-07 23:57:10
阅读次数:
301
ViewController.h #import "ViewController.h" @interface ViewController () @property(strong,nonatomic)UIImageView *beijing; @property(strong,nonatomic)
分类:
移动开发 时间:
2016-03-07 22:18:37
阅读次数:
224
@interface NQXImageBrowswe : UITableView /** * @brief 浏览头像 * * @param oldImageView 头像所在的imageView */ +(void)showImage:(UIImageView*)avatarImageView; @
分类:
移动开发 时间:
2016-03-07 18:56:26
阅读次数:
152
文/natewang(简书作者)原文链接:http://www.jianshu.com/p/268f3839d2e6著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。 其实你只需要的是圆角图片。。。。。 UIGraphicsBeginImageContextWithOptions(ima
分类:
其他好文 时间:
2016-03-06 01:14:58
阅读次数:
259
非常非常喜欢SDWebImage,就算后来AF也做了图片缓存,我也还是一直使用。图片缓存真的是一件令人头疼的事,但是SDWebImage封装了一切,你所需要的只是简单的set一个URL;1、设置一个展位图(可选择);2、根据URL去内存中找,找到返回图片3、内存找不到,硬盘找,找到返回图片,内存做备
分类:
Web程序 时间:
2016-03-06 01:11:01
阅读次数:
220
在objective-c中,类中的全局变量经常使用如下的方式申明。 @property(nonatomic(1),strong(2))UIImageView *imageView; 其中的1,2处是对此变量的一些属性申明。有以下几种strong weakassignstrong 和 weak 是在a
分类:
其他好文 时间:
2016-03-06 01:00:29
阅读次数:
198
#import "CXDView.h" @interface CXDView () //动态图 @property (strong, nonatomic) UIImageView *loadingImageView; //提示文字 @property (strong, nonatomic) UILa
分类:
移动开发 时间:
2016-03-04 22:36:05
阅读次数:
349
一张清楚的图片变的模糊了,也就是所谓的毛玻璃效果,通过查看图层可以发现,它只是在原有的图片上加了一个View,而这个View具有毛玻璃效果, 图层查看如下图所示: 最终效果图如下图: 1 1 // 创建图片 2 2 UIImageView *imgView = [[UIImageView alloc
分类:
其他好文 时间:
2016-03-04 00:12:18
阅读次数:
145