Questions tagged [ios-camera]
285 questions
0
votes
1 answer
iOS camera-based app for Facebook review
My application is a camera based iOS application. I want to upload my application for Facebook review. But the review guidelines requires me to upload either simulator build file or AppStore link of the app. My application is not on the AppStore…

maven25
- 231
- 2
- 12
0
votes
1 answer
ios Camera app swift 3
I want a camera interface in my app with capture and save image capabilities but i'm not able to get anything when i run this app, build is successful without any errors but nothing is showing on the viewController.
class ViewController:…

Kartic
- 26
- 1
- 5
0
votes
1 answer
Is it possible to call the System Camera from my own app
I want to call the System Camera from my app by "openURL", is it possible?
I have read the document About Apple URL Schemes. It mentions Main, Phone .etc, but do not mention Camera. As I can open the Setting Application by…

itenyh
- 1,921
- 2
- 23
- 38
0
votes
0 answers
How do I find where this video is recorded to?
Im recording from a camera to a file, but I don't know how to look for the recording to see if its working. How do I find the recording or rewatch it afterwards? I checked out a post about downloading the file data from the devices window, but I…

Sebastian Considine
- 29
- 6
0
votes
3 answers
UIImageView making other Views inconsistent
I've designed a ViewController with an ImageView, 3 Label-TextField combination, one single Label and one Toolbar at the bottom of the view. All of these view elements are inside a Stack View. The design is like below:
The contentMode property of…

nayem
- 7,285
- 1
- 33
- 51
0
votes
0 answers
How to capture image from camera without user interaction using Xamarin iOS
I want to capture series of images based on the device orientation (using compass) but my specific requirement is to capture automatically without the need to manually taking photos which is the only way i could find possible.
Im using…

Ayad T.
- 119
- 2
- 10
0
votes
1 answer
Borrow iOS native camera app into my own app
I have an idea of creating a custom iOS camera app that could extend the camera's use. First of all I am thinking to just "borrow" or integrate the entire functions and UI of the native iOS camera app into my own app, for which means when I use my…

Hang
- 355
- 3
- 19
0
votes
1 answer
images deleted form tmp folder when app closed
We are getting an image from the gallery and we saved the image name into Sqlite.
var options = {quality: 75,
destinationType : Camera.DestinationType.FILE_URI,
sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
…

Pavan Alapati
- 635
- 2
- 8
- 21
0
votes
2 answers
Accessing front Camera with swift?
I've done some searching and most answers are either in Obj-C or not applicable to this code.
I'm using this guide : http://drivecurrent.com/devops/using-swift-and-avfoundation-to-create-a-custom-camera-view-for-an-ios-app/
and I've got this code…

Barkley
- 6,063
- 3
- 18
- 25
0
votes
1 answer
UIImage uncompressed from AVCaptureStillImageOutput
This is what I tried so far for the configuration of the camera:
AVCaptureSession *session = [[AVCaptureSession alloc] init];
[session setSessionPreset:AVCaptureSessionPresetInputPriority];
AVCaptureDevice *videoDevice =…

Bogus
- 263
- 1
- 2
- 11
0
votes
0 answers
AVFoundation Custom Camera - UIImage for CapturedPhoto Stretches and Inverts
I am trying to have a custom Camera Roll using AVFoundation, with square display and circular mask. In the ViewController, I added
UIView (for live preview of the camera)
UIImage (for captured photo)
UIImage (for the circular mask)
I used…

senty
- 12,385
- 28
- 130
- 260
0
votes
0 answers
App cannot save to camera roll, even with permission
I am trying to export a UIImage to the camera roll when the user presses an export button. The button calls this method.
I have checked that the method is being called, I've checked the size of the photo, I've even displayed the image from this…

Austin Schiebel
- 59
- 9
0
votes
1 answer
Leveling the image with the Camera filter in ios 9
I'm creating app for ios, I'm currently working in camera.I like to draw the balance or straightening the image with a filter, the balance filter should move along the angle of the phone to ensure the phone is in prefect straight. I imported the…

developer
- 3
- 7
0
votes
1 answer
Is it possible to draw grid lines using AVFoundation Framework in Objective c
I am creating the app like VSCO Cam, so I imported AVFoundation framework to my project and used AVCaptureSession to create the custom camera.I also need to create the custom filters as same as VSCO Cam.
Now I want to add the gridlines on the…

developer
- 3
- 7
0
votes
1 answer
Screen recording of iPhone while playing a video
In my project I have to add a book page flip animation, and in this book on the right side page a video will play. Once the first video will complete the page will turn like as book page and the second video will play on the next right side page and…

Gobinda Das
- 143
- 7