[iPhone Dev] Camera Capture Flash

// Capture Flash
UIView *flashView = [[UIView alloc] initWithFrame:[self._videoPreviewLayer frame]];
[flashView setBackgroundColor:[UIColor blackColor]];
[flashView setAlpha:0.f];
[[[self view] window] addSubview:flashView];
[UIView animateWithDuration:.4f
                 animations:^{
                     [flashView setAlpha:1.f];
                     [flashView setAlpha:0.f];
                 }
                 completion:^(BOOL finished){
                     [flashView removeFromSuperview];
                     [flashView release];
                 }
];

댓글

이 블로그의 인기 게시물

한글 2010 에서 Ctrl + F10 누르면 특수문자 안뜰 때

아이폰에서 RFID 사용하는 방법

맥 화면이 안나올때 조치방법