- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/IFTTT/FastttCamera
- 软件文档: https://github.com/IFTTT/FastttCamera
软件介绍
FASTTTcamera 是 一个快速和易用的 iOS 相机框架,带可定制的滤镜。
示例代码:
#import "ExampleViewController.h"
#import <FastttCamera.h>
@interface ExampleViewController () <FastttCameraDelegate>
@property (nonatomic, strong) FastttCamera *fastCamera;
@end
@implementation ExampleViewController
- (void)viewDidLoad
{
[super viewDidLoad];
_fastCamera = [FastttCamera new];
self.fastCamera.delegate = self;
[self fastttAddChildViewController:self.fastCamera];
self.fastCamera.view.frame = self.view.frame;
}
R Cookbook
Paul Teetor / O'Reilly Media / 2011-3-22 / USD 39.99
With more than 200 practical recipes, this book helps you perform data analysis with R quickly and efficiently. The R language provides everything you need to do statistical work, but its structure ca......一起来看看 《R Cookbook》 这本书的介绍吧!
