Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I would like to develop a MS paint like app for the iPhone. Could you guys point me to some sample or tutorials on this topic? I'm new to Objective C and Xcode. Thanks
Try playing with this sample project. It's a very simple paint app using Open GL.
https://developer.apple.com/library/archive/samplecode/GLPaint/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007328
No need for Open GL indeed. You can check out this blog post . It has a great example code for a simple paint app in iPhone.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there a place where I can get the iOS Message and Mail app icons? I checked in the Apple Developer Resources and Human Interface Guidelines but couldn't find anything? (I know that you can use them with the UIActivityViewController, but I need them in a separate UIImageView as well)
Here is a link to an icon package for iOS 5 that I used in one of my apps:
http://iconsparadise.com/iphone-free-icons/iphone-4-ios-5-app-icons/
Pretty straight forward download. Good luck.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have simple question. I have HTML5 app and I want it to be installable as an ordinary native app. I know there is Titanium Developer and others, but they seem too complicated for this simple task. Is there some simple tool for this problem ?
use phonegap, very very easy,
look at http://www.phonegap.com/start/
you will be given "assets" folder for HTML,CSS,Javascript . Just use those and run.
I'm just beginning to look at www.phonegap.com and it's very straightforward...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Improve this question
Thanks in advance.
I have a requirement is that , to find only the face from selected image, and need to crop it from the original image.Is there any face detection api for it in iphone using objective c . If any one know please tell to me.
The easiest way would be to use a RESTful web service API if Internet connection is possible. You can checkout http://skybiometry.com/ for free face detection & recognition API.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am Looking for book or tutorials for implementing face detection in iphone sdk? OpenCV is one but it takes more time to detect faces.
I want to learn algorithms used for face detection. Once i got a logic then it can be easily converted into programs.
Plz send me appropriate tutorials or ebook links ???
The OpenCVS library can be used on the IPhone:
Learning OpenCV: Computer Vision with the OpenCV Library
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I was going through the Google API for the iPhone but couldn't quite understand the use of YouTube API in iPhone apps. Neither could I find any good tutorials.
Can someone please point to documentation/samples which explain how to use the YouTube API in an iPhone app.
Thanks.
this may help http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html
Try out this link
http://gdata.youtube.com/feeds/api/videos?q=%#&start-index=21&max-results=20&v=2
replace the %# with the text that you are searching it will return you xml parse it and get the data displayed in your controller
Hope this helps