How to implement custom camera functionality in iPhone? [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to develop a functionality such that to implement custom camera functionality in iPhone apps so please give me any link or any idea to develop this functionality.
Thanks in advance.

What do you mean by custom camera? You can only use the UIImagePickerController which brings up a defautlt camera interface to capture images or videos. You can use camera overlay to show some custom view as overlay.
You can use some image processing techniques if you want to do any image alteration or something on the captured images.

Related

How to set iPhone lock screen background programmatically? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am interested to develope an app which will show quotes on the lock screen of my iPhone. I want app like following image.
I am trying to do it but not getting any idea.
Please help me so I can start working on it.
This is not possible, the SDK does not let you do this.
As #Toam pointed out, the SDK does not allow you to set the lock screen background. However, you can kinda-sorta get around this. If you're willing to play a little music, you can set your own images/text to the lock screen in playback mode. Details can be found here: https://stackoverflow.com/a/8387406/716216

Combobox Image for the iPhone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to create simple combo box for my app. I've read the following question: Add UIPickerView & a Button in Action sheet - How?
Do you have links for a nice image that I can put on the button that acts like a combobox? I searched the web with no luck, so whoever uses my app doesn't know that this button is actually a combobox.
Thanks.
Here's link to some nice iphone kit images:
iOS 5 GUI PSD (iPhone 4S)
If you can't find it there, do what we all do, either design the images yourself or hire a designer :)

Image Rendering using Cocos2D [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Hi i'm developing an iPhone app with cocos2D framework for image rendering .
How we can split the image into layer for example consider an house image here i want to spilt the roof of the house ,door,wall etc and i want to change there respective colors or images can any one help me in this.! I needed some example code also for it .
Please help me
Use different layer for different depth of rendering.
You can read more about Cocos2D programming here: Click Here
Get Cocos2D SDK and run some sample test applications. DOWNLOAD SDK HERE

can i import 3d image in my iphone app? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i m new to iphone/ipad application development, can we import 3d image in my iphone/ipad
app. or there any other controls available to display 3d image. i also want to give actions
to image on particular sections. can any one help me.
Thanks...
The answer is yes. Check out OpenGL samples for iOS. Just google and you will find many.

How to create app like iBooks [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Is it possible to create app like iBooks?
I want to create app like iBooks. I want to know how i can curl the page of pdf.
Please share your ideas to create this app.
Thanks
Check out this library, might be a good starting point:
You probably want to do something like render the page as a texture to a 3d surface that is initially flat, which you could then deform and animate to provide the curling animation.