iPhone - using YouTube APIs in iPhone app [closed] - iphone

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

Related

How to add google speech recognition in app [closed]

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 want to integrate Google speech recognition in my app but does not find much resource on this topic.
In this tutorial it says that its possible. But i have done some research in SO and i find only this and this Question/Answer which says its not possible so i am confuse what to do.
Does Google have documentation on speech recognition API? Should we able to use it in iOS app?
I don't think google provides any Objective-C APIs. There's a speech-recognition API for google chrome (see this), but you can't use it in iOS.
I also couldn't find anything in google's developers site, so I suggest you to try other APIs for that.

getting a large version of message and mail icon ios [closed]

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.

OpenCV basic tutorial [closed]

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 am a new in iPhone Application development, I wants to use OpenCV in my project. I am googling from last few hour, but not find the start up tutorial for OpenCV mostly links explain the advance programming, So I need help
please provide me good tutorial link for starter.
https://github.com/BloodAxe/opencv-ios-template-project
http://computer-vision-talks.com/2011/08/a-complete-ios-opencv-sample-project/
http://maniacdev.com/2011/08/open-source-sample-project-using-precompiled-opencv-2-3-1/
Here are some links from stackoverflow itself . Please check them out :-
Tutorial for iPhone OpenCV on shape recognising
http://www.eosgarden.com/en/opensource/opencv-ios/documentation/tutorial/
http://computer-vision-talks.com/2011/08/a-complete-ios-opencv-sample-project/
here you find good documentation of opencv
opencv site
opencv docs
eosgarden
List of tutorials in SO Answer

How to make HTML5 app installable on Android Market and Apples AppStore? [closed]

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...

How to create a paint app for iPhone? [closed]

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.