How to insert Video by Web into UITABBAR IOS 5.0 - ios5

I need to insert many videos taken from a website and add it in UITabBar,
I created my BarItems that are six, but now I have to implement the video in them,
how can I do? what library can I use?
Thanks for the support!
Alexander

Related

capture video without UIImagePickerController

I want to capture video in my app without using UIImagePickerController.
I want to be able to display it too on the iPhone screen ib the same time.
I tried to find an article and tutorial on how to do it but I couldn't find it.
Does apple allow to do stuff like this or only use the UIImagePickerController?
thx
Take a look at the AVCam sample from the Apple developer site. It shows you everything you need to know.
Also read about the AVFoundation framework.

How to make slide show in iPhone?

I need to make slide show for number of images. But all the images are coming from server.
How to make this?
Is it possible to attach slide show feature in Three20 framework?
Thanks in advance....
Three20 has slideshow functionality in the photo framework, but I've never used it. It's available in the TTPhotoViewController.

Photo Slider Iphone

I want to make a slider just like CNN's iphone application has.
http://i56.tinypic.com/15wdphg.jpg
i search all over but i didn't get any help even any clue. If some one has any idea than please share it with me, so i will make this slider.
Thanks
That way of displaying images is called Coverflow - see the question discussing open-source libraries for iphone with cover-flow implementation.
To the libraries listed there I would also add Tapku library.

How to Create Custom Controls for IPhone?

Hii friends,
i m new to iphone development and i have gone through some iphone applications with awesome UI design.
i guess those UIElements are not standard Iphone controls,if so
How to create Custom Controls or any different nice look for controls?
Thanks to all..
Check out the three20 UI Library.

Grid View as demoed in iPad

I'm trying to develop a grid-like application for the iPad. Has anyone seen a control that displays info in a grid? In the demos they use a grid-like layout in both the iBooks store and the pictures application.
Specifically in pictures, they are displaying a dynamic list of data in a grid.
I can work around it, of course, but I'd rather use a control if one exists. Thanks!
DTGridView:
http://www.danieltull.co.uk/blog/2009/10/28/dtgridview/
You should try AQGridView it does what you need.
Here are few screens of apps that use this library:
The people who know what controls are or or not in the 3.2 iPhone dev tools have all committed to Apple NDA so we can't tell you.
Steve is always watching.
If you have signed the NDA you should go to the Apple boards and ask.
You can however, make a gird like display very simply with the standard UITableview. Just have a tableviewcell subclass that displays columns. It took me about an hour to reproduce the photo picker display using that method.
Nope, you will have to create your own. People have been writing Home Screen compatible views though, so you might want to search for open source projects with that functionality.