很多时候我们只能得到一个URL,然后需要构建一个UIImage。
通常情况下,我们一般都是通过SDWebImage来直接构建UIImageVIew的image,如何用URL直接构建UIImage呢?
如下转换:
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:urlStr]];
button.backgro...
分类:
移动开发 时间:
2014-11-18 13:31:30
阅读次数:
164
系统方式:
//1.设置导航栏背景图片
[self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowIm...
分类:
移动开发 时间:
2014-11-17 17:51:26
阅读次数:
191
因为项目要做到美观,加上扁平化设计这么流行,所以各种找资料.原本想找找UIButton是否有直接的设置方法,却发现没有.找到点击后高亮也只有setBackgroundImage 这条路走了.首先写一个能改变大小,颜色,返回值为image的类方法.(我在网上找的...)+ (UIImage *)ima...
分类:
其他好文 时间:
2014-11-14 01:34:03
阅读次数:
158
NSMutableArray *images = [NSMutableArray array]; for (int i = 0; i<count ; i ++) { NSString *imageName = [NSString stringWithFormat:@"%@_%02d.jpg"...
分类:
其他好文 时间:
2014-11-13 16:08:46
阅读次数:
159
#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
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
+ (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 *)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
自:http://blog.sina.com.cn/s/blog_8988732e0100xcx1.html==========(one) UIImage 图像 等比例缩放==================================PicAfterZoomWidth:缩放后图片宽 PicAf...
分类:
移动开发 时间:
2014-11-08 23:21:15
阅读次数:
324