Questions related to the iOS UIImagePickerController class (and the associated UIImagePickerControllerDelegate protocol), which provides system-supplied user interfaces for taking pictures and movies on iOS devices, and for choosing saved images and movies.
1
vote
0answers
18 views
Custom UIImagePickerViewController view hides StatusBar
I know that a lot of people have asked this, but I am having a hard time with showing the status bar when I call the UIImagePickerViewController. I implemented it in my app as a "custom" control, ...
0
votes
2answers
45 views
Capturing image without user interaction
I want to capture a photo in iOS without any user interaction by using the front camera. Can any one show me how to do that?
I used the takePicture function in UIImagePickerController class but it ...
0
votes
0answers
13 views
UIImagePickerController is there anyway to get the bounds of the camera preview?
Hi trying to add a UIImageView on top of UIImagePickerController so that when I take picture the captured image slides in on top of the UIImagePickerController. What I am trying to figure out, due to ...
0
votes
0answers
11 views
Camera and Photo roll random crashes
hi in my app i have the ability to take or choose a photo and display it in an image view i have 12 image views and so you can pick 12 photos and display them
my problem is the fact the app crashes ...
0
votes
2answers
20 views
ios stock edit screen
When you open a picture in your photo album and you select a picture there is an edit button top right which opens up auto enhance/red eye and crop features. Is there a way to get this view/screen in ...
0
votes
0answers
8 views
Why is the crop rectangle for existing pictures not square, but newly taken pictures yes?
I have this situation where I want all my images to be upload in a square aspect ratio. When the user is presented the option to add a picture, he can either take it live, or select one from the photo ...
1
vote
1answer
31 views
Using a CameraOverlayView with Storyboards
I am trying to use a CameraOverLayView with a UIImagePickerController using Storyboards in XCode.
In the storyboard, CameraViewController Segues to ImagePickerController, which has a CameraOverlayView ...
-2
votes
1answer
23 views
Generate UILabel text when picking image [closed]
I want an app that generates a random text from an array to a UILabel when I pick an image through UIImagePicker, just like the Look alike apps works.
Can someone give me a good tutorial or explain ...
1
vote
0answers
22 views
UIImagePickerController and Push Segue
I have a UIImagePickerController that is presented modally from a home screen. Now my understanding is that UIImagePickerController is a subclass of UINavigationController and acts as the root view ...
2
votes
0answers
24 views
Playback of a video stored on Camera Roll?
I'm having trouble trying to playback a video stored on an iOS device's camera roll.
This is an Adobe AIR app, using two air native extensions (ANE):
one extension for picking media (images and ...
0
votes
1answer
30 views
Background music closes on taking picture from camera UIImagePicker
When I take picture from camera using UIImagePicker, background music (from ipod app, pandora app) stops. It's not happening for facebook app. Is there a separate delegate for this? Please help
0
votes
1answer
15 views
Capturing images while record button clicked in ios simultaneously
Iam using UIImagePicker to record video when i click the record button i want to capture the frame with sound and add it into one array .Please help me to accomplish the same thanks in advance .
0
votes
1answer
14 views
iOS didFinishPickingMediaWithInfo camera roll order newest Images at top
A quick question how do you reverse the order that the camera roll is shown i.e newest images at the top rather than having to scroll all the way to the bottom to get newest image? Alas Facebook image ...
0
votes
0answers
37 views
How to get images from photo library without using ALAssetsLibrary?
I want to implement a custom image picker with multiple images selection feature, just like an extension of the standard UIImagepickerController. I know I can use ALAssetsLibrary to enumerate the ...
1
vote
0answers
42 views
How to align the live screen camera at the center of the view in iPhone?
If there is a black bar at the bottom of the screen(like in the pic that i've pasted below), we have to re-scale the live screen camera overlay to fit the aspect ratio of iPhone. And even if I change ...
1
vote
0answers
77 views
Alloc class instance
I Have this class:
@class UIImagePicker;
@protocol UIImagePickerDelegate<NSObject>
@required
- (void)didFinishChooseImage:(UIImagePicker *)picker withImage:(UIImage*)img;
@end
@interface ...
0
votes
0answers
17 views
AVCam Demo OverscanCompensation implementation
I'm currently working with the AVCam demo app to present a live camera feed over airplay or apple hdmi adapter for import into a HD camera switcher.
The issue I'm having is with OverScanCompensation ...
0
votes
0answers
6 views
forcing specific rotations ofr testing
I am trying to test that my code works in all possible rotations of the device + image orientation with the camera picture.
Does anyone know if it's possible that I can force an orientation in code ...
0
votes
1answer
24 views
Scrolling not working after UIImagePickerController
In my app scrolview is made active using the following code.
scroll.contentSize = CGSizeMake(320, 760);
[scroll setScrollEnabled:YES];
[scroll setCanCancelContentTouches:NO];
scroll.indicatorStyle = ...
1
vote
1answer
45 views
Muti select uiimagepickercontroller like facebook app
I am developing an app, In which user can select multiple picture and upload it server.
As of now i am using QBImagePickerController for selecting multiple pictures but client demanding us to make ...
0
votes
1answer
61 views
How to use a UIImagePickerController with UINavigationController
I've browsed the different similar questions here but couldn't find anything useful for my problem. What I'm struggling with is quite simple but I can't figure it out.
I'm using Xcode 4.6.2 and ...
0
votes
1answer
24 views
Resizing an image from UIImagePickerController not working
I am following this post on how to resize an image. I placed the + (UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize; in selectExerciseImageViewController.h and copied the relevant ...
0
votes
2answers
23 views
Image not saving in photo Album
I invoke UIImagePicker controller. When i click camera button, preview and use button only displaying, my image is not saving in photo Album.
code:
-(void)viewDidAppear:(BOOL)animated{
picker = ...
0
votes
2answers
84 views
Make a UIView display the camera view using UIImagePickerController
I'm trying to display the image a the camera sees into my own custom view. I DO NOT want to use Apple's own overlay property for UIImagePickerController: cameraOverlayView.
I don't want an overlay, ...
0
votes
2answers
51 views
Dismiss UIImagePickerController
I have tried every variation of dismissing a UIImagePickerController with out any luck. What am i doing wrong.
- (IBAction)choosePhoto
{
self.picker = [[UIImagePickerController alloc] init];
...
0
votes
1answer
58 views
Attempt to present modal VC on VC whose view is not in the window hierarchy
I have a storyboard that looks like this:
This is how it works: the InitialSlidingViewController instantiates the Navigation VC as the topViewController as follows in its .m file:
...
0
votes
0answers
13 views
Opening image picker controller on an existing opened pop over controller in iPad sdk [duplicate]
I have a navigation bar in one the screens and it has button which opens a pop over controller. Its an add data form which also asks users to provide an image as well.
As there is a pop over ...
2
votes
3answers
79 views
How to change cancel button title in UIImagePickerController?
Currently I'm working on a multi-language application and I want to change the Cancel ,Use and Retake button titles of the UIImagePickerController. How can I do that?
0
votes
0answers
13 views
imagePickerController can't pick movie
my idea is pick a movie from UIImagePickerController and upload it to web via HTTP post. At the moment i'm so far:
- (BOOL) startMediaBrowserFromViewController: (UIViewController*) controller
...
0
votes
1answer
38 views
Changing the button name and functionality in image picker modal view
How can I change the 'Choose' button name and functionality in the image picker modal view?
I want to change the name to 'Upload' button, to upload a movie to web.
3
votes
1answer
36 views
iPhone - How to deal with multiple UIImagePickerControllerDelegate?
I am developing an simple application scanning QR code. To scan QR code I am using one delegate method as shown below.
- (void) imagePickerController: (UIImagePickerController*) reader ...
0
votes
0answers
11 views
What is the appropriate way to record mp4 w/ LC-AAC audio encoding with the ios image/video capture?
I'm a little lost on what the appropriate way to change the encoding in the UIImagePickerController to Mp4/AAC. I assume it's not possible from the documentation I read but do I need to convert the ...
0
votes
1answer
28 views
Memory warning when tranfer image picked camera to one view to other
I open the camera on button click and take the image in uiimage and then transfer that uiimage to other view
But i receive memory warning when i do this 4-5 time.
Below is the code i worked for:-
...
0
votes
1answer
29 views
how to dissmiss a popover on button click and how to change the size
I am using UIPopover to display videos using UIImagePickerController.In this I have to dismiss my popover when use is clicked.Can anyone please help me to do this?
Also I want to change the size of ...
0
votes
0answers
17 views
to play a specific video from photo library in ipad using objective C
I am trying to develop an application in which ,I have to play a specific video from photo Library within iPad using objective C.
I have written the code for playing videos from photo Library and ...
0
votes
0answers
41 views
Set idleTimerDisabled to Yes is not working
I have set [[UIApplication sharedApplication] setIdleTimerDisabled:YES ] in didFinishLaunchingWithOptions. But it is not working at all.
In my app I am using UIImagePickerController to capture the ...
1
vote
0answers
44 views
Pausing Video Record in iphone
in my iphone app,I am recording video using UIImagePickerController.
I am recording and stoping like this
[VideoRecorder startVideoCapture]; //Starting Video Record
[VideoRecorder ...
0
votes
0answers
29 views
UIImagePickerControllerReferenceURL is missing
I'm trying to get some data about a video i chose in the UIImagePicker.
So when it gets into the UIImagePicker delegate method (below) i understand i need to use the ...
0
votes
0answers
41 views
MP AVAudioSessionDelegateMediaPlayerOnly end interruption
I'm making an app for iPad that uses the camera of the device. Now I want it so that you can record and save videos with Custom buttons.
The record is not really a problem, but when I save I get an ...
0
votes
3answers
36 views
UIImagePickerController - Determine if video was trimmed or edited
Is it possible to determine if a video chosen by a user using UIImagePickerController has been trimmed or not?
My app allows users to send short videos to each other. If they record a video whilst in ...
0
votes
0answers
28 views
UIImagePickerController blocks AVfoundation to capture frames
I want to write an augmented reality application on IOS. For this, I have read that people use UIImagePickerController to overlay the live camera with OpenGl rendered objects.However when i use OpenCv ...
0
votes
0answers
73 views
Detect presence of objects using OpenCV in live iphone camera
Can anyone help me to detect realtime objects in iPhone camera using OpenCV?
My actual objective is to give an alert to users while an object interfering on a specific location of my application ...
0
votes
0answers
22 views
UIIMagePickerController UIPopover controller Issue
I am using UIPopOverController to open photo library in iPad app. using below code :
self.imagePickerPopOverController = [[UIPopoverController alloc] ...
0
votes
1answer
42 views
UIImagePickerController and a small custom preview
I want to use an UIImagePickerController non-modally, with a small square preview. However, I get a big black bar at the bottom of the preview, which I can't get rid of (see the screenshot). Why is it ...
0
votes
0answers
41 views
How to take a picture with my custom overlay? [closed]
I've created my custom overlay with a button to take a picture using the takePicture method but on touching the button I haven't got any result.
...
0
votes
2answers
95 views
How to get saved image file path in iOS
Hi I am developing an app in which there is an option to pick the photos from iOS photo gallery. I have to upload the selected photos into the server. To upload the images i am using Kaltura SDK so i ...
0
votes
0answers
29 views
iOS UIImagePickerController and UIView rotation
My app is supposed to take picture, but I need to add a filter view on my screen while taking picture.
My filter view class.
#import "FilterView.h"
@implementation FilterView
- ...
0
votes
0answers
32 views
Record Video With mute option and along with label on ios [closed]
In IOS 6, record a video in LandscapeRight orientation. while recording display label on video screen and record those labels also in video. Video must contain the recovered video and recored labels.
...
0
votes
0answers
65 views
Disabling auto rotation for UIImagePickerController
I want to disable UIImagePickerView's auto rotation. So I used the following code:
UIDevice *currentDevice = [UIDevice currentDevice];
[parentViewController ...
0
votes
0answers
27 views
Taking pictures with a transparant overlay
My app can take pictures and when taking a picture an overlay is shown which fills the whole screen and most of it is transparant. When I take a picture the image is rendered and the overlay is drawn ...


