How to make simple control of MPMoviePlayerController - iphone

I'm making app using MPMoviePlayerController. This capture is pic of a my reference app. I want to make like red boxed part. - only Done button and progress bar. How can I make like this?
Can I solve thereby I add some options in MPMoviePlayerController or I add overlay view include some controls?
I can't find the good way. Please help!~ and Thanks!

You have to create your own controls, then add them to the overlay view...

Related

How to replicate the CNN iOS app pull down menu

Does anyone know how CNN is doing their top pull down menu?
It looks like a UITableView that is called with a touch drag event but wasn't sure. Googled various keywords but was not able to turn anything up. Just looking for some guidance on how to replicate this behavior.
I've no idea how it's actually done, but I know how I would do it: any view can sit completely or partially offscreen and be dragged onscreen by the user in the usual ways (e.g. a swipe or pan gesture recognizer). There's nothing special about that.
I guess they are doing something like https://github.com/mikefrederick/MFSideMenu
You have to customize "MFSideMenu" a lot though. If you dont want to show this menu on every view you need to disable UIGestureRecognizerDelegate on that view.
There is also something like https://www.cocoacontrols.com/controls/pullableview but you may need to add UIGestureRecognizer to this class.

How to create function that works take photo shoot+ save

I want to create an iphone app that if you shoot using the camera it automatically save and shoot again until you click Done.
is that possible?
Look at the takePicture method of UIImagePickerController. From the documentation:
Use this method in conjunction with a custom overlay view to initiate the programmatic capture of a still image. This supports taking more than one picture without leaving the interface, but requires that you hide the default image picker controls.
Since you have to have the default controls hidden, you'll also want to look at cameraOverlayView, which lets you provide your own controls to use instead. That's where you can put your start and done buttons.

How to make an app like VEVO?

The VEVO app on iPhone sets a great sample for video oriented apps. I'm working on something similar, and I want to now how to customize the video controller as VEVO does.
My current app is based on the built-in controller. It's OK, but I want to make it tremendous.
I've attached a screenshot. How to implement the progress bar?
you can add subviews to MPMoviePlayerController's view property such as custom buttons and everything.
Note: if there is something specific about the app you are talking about, i'd suggest posting a screenshot so others can see what you are talking about.

buttons and menu items in cocos2d/objective-c

In my app, I'd like a method called whenever the user taps the screen (anywhere on the screen). Normally, I'd make a transparent UIButton that covers the whole screen.
If I'm using the cocos2d framework, what's the best way to do this? Is it good practice to still use UIButtons? I've been reading about MenuItems but haven't found an easy way to make one giant fully transparent menu item?
Thanks.
try implementing touchesBegan:withEvent:. You can get the location and it supports mutltitouch (if you have enabled it on that view)
Try using CCMenu / CCMenuItem
check this link for more info...
http://www.cocos2d-iphone.org/api-ref/0.99.2/interface_c_c_menu_item.html

playing animation movie in iPhone application

I am currently working on a game, which has a long story at its initial.
It just telling the user that what happened before the war that is the causes of war.
So, I wish to show all these things like a movie.
I used the MPMoviePlayerController for this, now I am facing the problem while hiding the controls. I don't want to show the controls to the user. It must be full screen video having no other controls on the screen. Also user have option to skip this by tapping the screen.
please suggest me if there is any way to do this.
Thanks in advance.
Set your MPMoviePlayerController's movieControlMode property to MPMovieControlModeHidden to disable the onscreen controls. I'm not sure how to make the movie skippable, though.
theMovie.movieControlMode = MPMovieControlModeHidden;
will diable all controls