-(void)viewDidLoad{ UIImage *oldImage = [UIImage imageNamed:@"new"]; UIImage *oldImage = [UIImage imageNamed:@"new"]; CGFloat centerX = oldImag...
分类:
移动开发 时间:
2014-10-09 02:48:07
阅读次数:
197
+ (UIImage *)thumbnailWithImageWithoutScale:(UIImage *)image ?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? size:(CGSize)asize { ? ? UIImage *newimage = nil; ?? ? ? ? if (image)...
分类:
其他好文 时间:
2014-10-08 13:29:45
阅读次数:
213
在iOS的学习中,对于手势的处理是极为重要的,如对于图片,我们经常需要进行旋转,缩放以及移动等。这里做一下总结,详见代码。 1 - (void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 UIImage *image = [UIImage i...
分类:
移动开发 时间:
2014-10-06 19:40:40
阅读次数:
180
Chapter 23 Core Data1. Core Data is only able to store certain data types in its store, and UIImage is not one of these types. Instead, you declared t...
分类:
其他好文 时间:
2014-10-06 00:12:19
阅读次数:
300
#pragma mark - Set thumbnailImage-(UIImage*)setThumbnailFromImage:(UIImage *)image{ CGSize origImageSize = image.size; // The rectangle of t...
分类:
其他好文 时间:
2014-10-04 05:25:55
阅读次数:
349
UIImage去掉渲染只能在IOS7或者以上的系统使用UIImage*selectImage=[UIImagep_w_picpathName:selectedImageName];selectImage=[selectImagep_w_picpathWithRenderingMode:UIImageRenderingModeAlwaysOriginal];使用系统的UITabBar是美工给的图片加在上面是蓝色的,可以使用这种..
分类:
其他好文 时间:
2014-10-03 22:40:15
阅读次数:
245
UITableViewCell的标记、移动、删除、插入 UIImageView* arrowView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"disclosureIndicator.png"]] autorelease]...
分类:
其他好文 时间:
2014-09-30 17:29:29
阅读次数:
145
缓存图片方法
[[SDImageCache sharedImageCache] storeImage:myImage forKey:myCacheKey];
读取缓存
UIImage *myCachedImage = [[SDImageCache sharedImageCache] imageFromKey:myCacheKey];...
分类:
Web程序 时间:
2014-09-29 14:21:40
阅读次数:
126
关于@2x,@x图片的问题。1)每个软件都是要两套图标的,一套@2x,一套一般的。@2x的用来识别retian屏幕的,另外一套是用来识别一般屏幕的。少了哪一套都是不行的。2)写代码的时候,可以直接用一般的那套图标的图标名就可以,是png的图片可以不加后缀,否则是要加图片后缀的。3)用[UIImage...
分类:
其他好文 时间:
2014-09-29 12:10:00
阅读次数:
184
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFConstantString size]: unrecognized selector sent to instance....
分类:
其他好文 时间:
2014-09-28 20:21:25
阅读次数:
176