码迷,mamicode.com
首页 >  
搜索关键字:uiimage    ( 1221个结果
iOS:通过URL构件UIImage
很多时候我们只能得到一个URL,然后需要构建一个UIImage。 通常情况下,我们一般都是通过SDWebImage来直接构建UIImageVIew的image,如何用URL直接构建UIImage呢? 如下转换: NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:urlStr]]; button.backgro...
分类:移动开发   时间:2014-11-18 13:31:30    阅读次数:164
ios 导航栏(自定义和使用系统方式)
系统方式: //1.设置导航栏背景图片 [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; self.navigationController.navigationBar.shadowIm...
分类:移动开发   时间:2014-11-17 17:51:26    阅读次数:191
想制作纯色的UIButton吗? 来,哥教你~
因为项目要做到美观,加上扁平化设计这么流行,所以各种找资料.原本想找找UIButton是否有直接的设置方法,却发现没有.找到点击后高亮也只有setBackgroundImage 这条路走了.首先写一个能改变大小,颜色,返回值为image的类方法.(我在网上找的...)+ (UIImage *)ima...
分类:其他好文   时间:2014-11-14 01:34:03    阅读次数:158
UIImage播放序列帧
NSMutableArray *images = [NSMutableArray array]; for (int i = 0; i<count ; i ++) { NSString *imageName = [NSString stringWithFormat:@"%@_%02d.jpg"...
分类:其他好文   时间:2014-11-13 16:08:46    阅读次数:159
ios 截屏,截图
#pragma mark 截图 - (UIImage *)capture:(UIView *)view {     UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, 0.0);     [view.layer renderInContext:UIGraphicsGetCurrentContext()];     U...
分类:移动开发   时间:2014-11-12 19:47:11    阅读次数:200
小图用 imageNamed: 大图用 dataWithContentsOfFile:options
1down voteacceptedIf you're loading images like:[UIImage imageNamed:@"myImage.png"];Then the memory for this image will not deallocated, becauseimageN...
分类:其他好文   时间:2014-11-10 21:30:47    阅读次数:195
通过UIColor转换为UIImage
+ (UIImage*)createImageWithColor:(UIColor*)color{ CGRectrect=CGRectMake(0.0f,0.0f,1.0f,1.0f); UIGraphicsBeginImageContext(rect.size); CGContextRefcont...
分类:其他好文   时间:2014-11-10 19:53:45    阅读次数:236
一个简单的创建圆角图像的UIImage扩展实现
- (UIImage *)roundedCornerImageWithCornerRadius:(CGFloat)cornerRadius { CGFloat w = self.size.width; CGFloat h = self.size.height; CGFloat scale = ...
分类:其他好文   时间:2014-11-10 13:45:12    阅读次数:166
关灯游戏的实现
UIImage *ima = [UIImage imageNamed:@"1.png"]; for (int i = 0; i < 5; i++) { for (int j = 0; j < 5; j++) { ButtonSubview * button...
分类:其他好文   时间:2014-11-10 11:25:48    阅读次数:270
[转]常用iOS图片处理方法
自:http://blog.sina.com.cn/s/blog_8988732e0100xcx1.html==========(one) UIImage 图像 等比例缩放==================================PicAfterZoomWidth:缩放后图片宽 PicAf...
分类:移动开发   时间:2014-11-08 23:21:15    阅读次数:324
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!