图片的等比例缩放可以使用UIImageJPEGRepresentation和UIImagePNGRepresentation函数,需要两个参数:图片的引用和压缩系数. 也可以使用下面的函数 -(UIImage*)buildThumbnailImage:(UIImage*)image?scaledToSiz...
分类:
其他好文 时间:
2014-07-23 13:55:56
阅读次数:
482
当我们使用imageName这个方法时,我们可以看到图片的提示,而当我们自己写一个UIImage 的扩展的时候,需要用到资源图片时,经常就没有图片资源的提示,例如下面的方法, #define iOS7 ([[UIDevice currentDevice...
分类:
其他好文 时间:
2014-07-22 08:28:34
阅读次数:
668
UIButton *downButtonOne = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, self.bounds.size.width, 50)]; [downButtonOne setImage:[UIImage imageNamed...
分类:
其他好文 时间:
2014-07-18 18:34:16
阅读次数:
191
最近一直没有写笔记, 总感觉自己少了点什么, 也没有转载什么有用的笔记, 今天小弟特此献上一篇图片旋转和保存旋转的功能实现, 注意这是转载, 我是来当自己笔记的, 哈哈哈哈... 1 @interface ViewController () 2 { 3 UIImageView * iv; 4...
分类:
其他好文 时间:
2014-07-16 18:41:02
阅读次数:
195
UIImage *image = [[UIImage imageNamed:@"test.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 10, 0, 10)];其中Insets这个参数的格式是(top,left,bottom,right)...
分类:
移动开发 时间:
2014-07-16 14:00:47
阅读次数:
216
先上图:
这个UIView可以这样写:
-(id)initWithFrame:(CGRect)frame backImage:(UIImage*)image msgStr:(NSString*)txt
txtColor:(UIColor*)color{
self = [super initWithFrame:frame];
if (self)...
分类:
移动开发 时间:
2014-07-14 11:22:27
阅读次数:
246
今天在搭界面的时候发现个问题,以前从来没碰到过,感觉很奇葩,找了好长时间终于找到了。把这个警告截图上来和大家分享下。
这个提示的意思是说你用了这个方法
[UIImage imageNamed:name];但是这个name却是空的,所以就报了这个错了。
解决方法,在项目中搜索[UIImage imageNamed:,然后打印看看所谓的name是否为空。找到后替换。...
分类:
其他好文 时间:
2014-07-12 22:59:25
阅读次数:
397
去掉导航栏的边界黑线
in viewDidload:
[self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shad...
分类:
移动开发 时间:
2014-07-12 19:36:20
阅读次数:
208
//UIButton *aBtn=[UIButton buttonWithType:UIButtonTypeCustom];//[aBtn setFrame:CGRectMake(40, 100, 60, 60)]; [aBtn setBackgroundImage:[UIImage imag...
分类:
移动开发 时间:
2014-07-09 18:11:59
阅读次数:
666
iOS开发项目篇—09新版本特性·分享和开始一、ios开发中图片的加载图片的加载:[UIImage imageNamed:@"home"]; 加载png图片(一)非retina屏幕(1)3.5 inch(320 x 480)* home.png(二)retina屏幕(1)3.5 inch(640 x...
分类:
移动开发 时间:
2014-07-09 15:09:31
阅读次数:
340