RKCropImageController

码农软件 · 软件分类 · 图像(Image) · 2019-06-01 22:42:14

软件介绍

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;
}

本文地址:https://codercto.com/soft/d/7055.html

深入理解C指针

深入理解C指针

[美] Richard Reese / 陈晓亮 / 人民邮电出版社 / 2014-2 / 45.00

深入理解C指针和内存管理,提升编程效率!这是一本实战型图书,通过它,读者可以掌握指针动态操控内存的机制、对数据结构的增强支持,以及访问硬件等技术。本书详细阐述了如何在数组、字符串、结构体和函数中使用指针,同时演示了相应的内存模型及其对指针使用的影响。 指针为C语言带来了强大的功能和灵活性,却也是C语言中最难啃的一块“骨头”。本书旨在帮读者透彻理解指针,解决这个老大难问题。不论是初学者还是经验......一起来看看 《深入理解C指针》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具