(iphone) 可以改变相机视图吗?
我想在用户玩我的应用程序时偷拍一张照片,并在一段时间后显示照片。
如果不可能,我想减小相机视图尺寸。
这可能吗?
谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为苹果不会允许你“偷拍”用户的照片。您的应用程序可能会或可能不会被拒绝,您可能需要考虑另一种方法来允许应用程序对用户进行快照,也许是一个警报,就像“位置”对话框一样,要求用户允许该操作。
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.
这是完全有可能的。只要有一个 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.