hide Subtitles menu from mpmoviecontrol in ios 7 - ios7

In iOS 7 when i push the mpmovieplayercontroller to screen there is an "Audio & Subtitles" menu item. However, it does not in ios 6. (it appears only in stream video playing)
Are there any way to hide this menu ?
BTW, i have tried 4 MPMovieControlStyle and none of them hide this menu.

The reason why Alternate Track button appears and how made it hidden.
https://developer.apple.com/library/ios/qa/qa1801/_index.html

Related

Continuity camera contextual menu issue

The contextual menu in one NSTextView in my app does work and imports a sketch made on my iPad / iPhone.
My problem is that when another of my app's windows is visible, the contextual menu in its NSTextView does not connect to the iOS device.
Also, when this second window is visible, the menu no longer works in the other window.
I posted a screen recording to YouTube here: https://youtu.be/qWMUGdL7O8g
I tried changing firstresponder to no avail.

ios 10: Push notification - change the text of button "View"

In iOS version 9 and below of my app, I added 2 action buttons and upon sliding the notification I see options - action1 and action 2 as desired. However in ios 10 I see 2 buttons with text "View" and "Clear" and upon clicking on "View" I am able to see the customized buttons I added.
1) Is there any way that I see the buttons I added directly without clicking on "View"?
2) Is there any way I can change the text of "View"?

UIAlertView cuts off last row of message

I would like to show an alert using a UIAlertView with a lot of text.
When I show this alert in the iOS simulator running iOS 4.2 it covers the navigation bar and the tab bar, however when I run the app on my iPhone running iOS 3.1.3 the alert message doesn't cover the navigation and tab bar. Furthermore, my "Okay" button cuts off the last part of the text of the UIAlertView.
How can I prevent the last line of text in the UIAlertView from being cut off on my iPhone running iOS 3.1.3 as it is on the simulator running iOS 4.2?
Thanks
Instead of depending on UIAlertView (which isn't meant for displaying an e-book's worth of long form text), you should create your own UIAlertView-like modal dialog with a scrollable text view so you can display everything you want the user to see.

Need to add a popovercontroller in iPad

I am working on an app for iPad. I have 6 screens. On all those 6 screens I have to add a menu bar on left side of the iPad. The app is in landscape mode. There would be a button on left side of the iPad. When user presses that button a popup appears on that button which has 6 buttons. Those 6 buttons would navigate to their respective screens. For example, when button A is pressed, it navigates to screen "a". Similarlly when buton B is pressed it navigates to screen "b" and so on. I have no idea about it. How can I implement a popovercontroller. please help.. I m in a great trouble..
regards
PC
http://www.raywenderlich.com/1056/ipad-for-iphone-developers-101-uipopovercontroller-tutorial
Wonderous tutorial on how to make UIPopoverControllers. Easily found with google too. Used it myself as well.
Good luck;)

how to come back to different view after opening the safari through another view in iphone application?

I'm using tabbar based application. I have 9 tabbar items. I'm calling the safari in my 6th tabbar item. When i close the safari and open the app again i want my app to open the 2nd tab in the application. Can any one help me out in this issue.
Thanks
Try programmatically set tab bar selected index to 2 applicationDidBecomeActive/applicationDidFinishLaunching(if your app does not run in background). You can search on google and you will easily find the answer.