(現在iOSのみ。Androidは今後対応予定)
無料で使えて、アプリからシャッターを切れるし、
露出の変更はアプリからしか出来ないし、
シータには画面が無いから撮った写真をすぐに見るには必要ですし、
必須アプリと言えます。
使い方とか説明しておくよ。
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"xxxx"]];
imageView.backgroundColor = [UIColor grayColor];
imageView.alpha = 0.5;
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"xxxx"]];
UIColor *color = [UIColor grayColor];
UIColor *alphaColor = [color colorWithAlphaComponent:0.5];
imageView.backgroundColor = alphaColor;