0

私はLLSimpleCameraを使用しています。画像をキャプチャして、画像を配列に保存するだけですが、見栄えがよくありません。? キャプチャ画像を表示し、スナップチャット プロファイルのように見えるその他の方法。

これがコード m の使用です。

-(void)captureimages
{
  counter++;
  if (counter<4)
  {
 [self.camera capture:^(LLSimpleCamera *camera, UIImage *image,NSDictionary *metadata, NSError *error) {
    if(!error) 
    {
        animationView1.hidden = YES;
        [imageArray addObject:image];
        [self performSelector:@selector(captureimages) withObject:self afterDelay:1.0 ];
    }
     else 
    {
        NSLog(@"An error has occured: %@", error);
    }
}
exactSeenImage:YES];
    [self dismissModalViewControllerAnimated:YES];
    NSArray *animationArray=[NSArray arrayWithArray:imageArray];
    animationView.animationImages=animationArray;
    animationView.animationDuration=3;
    animationView.animationRepeatCount=0;
    [animationView startAnimating];
}
else
{
 animationView.hidden = NO;
    [self.camera.view removeFromSuperview];
    [self.camera removeFromParentViewController];
    view1.hidden = YES;
}
}

前もって感謝します。!

4

0 に答える 0