Snapchat喜欢相机

时间:2016-06-30 21:24:41

标签: ios xcode avcapturesession custom-view snapchat

现在,我正在开发类似应用程序,我在this tutorial后制作了自定义相机,然后在next video上解释了如何拍照。

我的问题是他拍照触摸屏幕,我想用一个按钮拍照,现在 .xib 看起来像这样:

enter image description here

首先,我有这个问题:

    func didPressTakeAnother(){
    if didTakePhoto == true{
        tempImageView.hidden = true
        didTakePhoto = false

    }
    else{
        captureSession?.startRunning()
        didTakePhoto = true
        didPressTakePhoto()

    }

因为我添加了一个按钮,我更改了func didPressTakePhoto,所以我弹出了这个错误。

enter image description here

在那之后,我想测试它,所以我评论了这段代码,所以它构建但按钮文本没有出现,我现在无法拍照。

关于如何使其发挥作用的任何想法?

here is a paste bin with the code from the video

0 个答案:

没有答案