(iphone) 可以改变相机视图吗?

发布于 2024-11-05 09:39:20 字数 90 浏览 1 评论 0原文

我想在用户玩我的应用程序时偷拍一张照片,并在一段时间后显示照片。

如果不可能,我想减小相机视图尺寸。

这可能吗?

谢谢

I'd like to take a sneak picture while user is playing my app and show the pic after a certain time period.

If that's not possible, I'd like to decrease the camera view size.

Is that possible?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

錯遇了你 2024-11-12 09:39:20

我认为苹果不会允许你“偷拍”用户的照片。您的应用程序可能会或可能不会被拒绝,您可能需要考虑另一种方法来允许应用程序对用户进行快照,也许是一个警报,就像“位置”对话框一样,要求用户允许该操作。

I dont think Apple will allow you to "sneak a pic" of the user. Your app may or may not get rejected, you may want to think of another way to allow the app to take snap of the user, maybe an alert, much like the Location dialog, asking the user to allow the action.

一花一树开 2024-11-12 09:39:20
     UIImagePicker *imagePicker.cameraViewTransform = 
                                 CGAffineTransformScale(imagePicker.cameraViewTransform,    1.0f, .5f);

You can change the by using this one.
     UIImagePicker *imagePicker.cameraViewTransform = 
                                 CGAffineTransformScale(imagePicker.cameraViewTransform,    1.0f, .5f);

You can change the by using this one.
执笔绘流年 2024-11-12 09:39:20

这是完全有可能的。只要有一个 UIView 覆盖你的 UIImagePickerView 即可。使用
-takePicture 方法随机拍照,无需按下任何按钮。

It is completely possible. Just have a UIView overlay your UIImagePickerView. Use the
-takePicture method to randomly take a picture without them pressing anything.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文