- 授权协议: Apache
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/ren6/RKCropImageController
- 软件文档: https://github.com/ren6/RKCropImageController
软件介绍
RKCropImageController 是一个实现了图片剪切的 iOS 控件,支持缩放。
使用方法:
// in header
#import "RKCropImageController.h"
// in code
RKCropImageController *cropController = [[[RKCropImageController alloc] initWithImage:imageView.image] autorelease];
cropController.delegate = self;
[self presentModalViewController:cropController animated:YES];
// delegate callback
-(void)cropImageViewControllerDidFinished:(UIImage *)image{
imageView.image = image;
}
Algorithms + Data Structures = Programs
Niklaus Wirth / Prentice Hall / 1975-11-11 / GBP 84.95
It might seem completely dated with all its examples written in the now outmoded Pascal programming language (well, unless you are one of those Delphi zealot trying to resist to the Java/.NET dominanc......一起来看看 《Algorithms + Data Structures = Programs》 这本书的介绍吧!
