I'd like to play a video in a native tvOS app with the look and feel of the TVML based menuBarTemplate, but can't find a way to integrate this into a native app. So the question is, if it is somehow possible to integrate the menuBarTemplate into a native tvOS app written in Swift
Which part of the menuBarTemplate?
The tabbar is a widget that you can drop into the storyboard.
The text list is likely a stack view or an embedded tableview.
That nice image scrolly thing on the left is would be uiviews or something? It's a shame all the TVML widgets didn't come over to TVos UIKit.
Related
I have a simple tvOS app in swift, where I want to change the background to a different image on specific screens. Apples hig for tvOS has some screenshots where this apparently was done (p.e. the screenshot under "Tables and Collections")
Is there an API to do this? I couldn't find one, but I've seen this done in a few apps. As a workaround I could probably insert a fullscreen image with a UIVisualEffectView above it, to achieve something similar, but that seems wrong.
I wish to add a UIViewController to my iOS PhoneGap application which will be loaded before
the UIWebView is loaded - some kind of splash screen which will play a video, before the actual web page is loaded.
Is that possible using PhoneGap? can someone share their experience doing something like that?
Thanks!
I don't think it's possible in a regular phonegap project because you can't call a plugin until the device is ready, and that happens after showing the phonegap view.
But you can create a native project, create the first view controller and then change to a second view controller with a phonegap webview embedded
For more info about embedding phonegap webviews in native project see cleaver doc
I'm trying to recreate the Camera.app buttons and interface from iOS in my own, custom camera application built on GPUFilter. Specifically talking about the Flash, Options, and front vs back camera button toggle that are across the top of the app:
Curious to know if these are built into Storyboards as UI objects or if there's another easy way to recreate these without totally reprogramming. I'm also interested in using the overlay table view that they use (in picture above) for options.
Thanks!
You can using AVCamCaptureManager and AVCamRecorder classes. Apple has a demo program build on its developer site here.
I'm starting developing apps on iPhone, and I was wondering if you helping me with this.
Instagram App, Foursquare App both uses Navigation Buttons Bar at the bottom? Or is just a fancy navigation bar made in CSS and everything is loaded as a html in UIWebView.
It can be as fancy as you want and doesn't mean it's not native. The out-of-the-box controls and UI we are all familiar with are not the only option, you can subclass or even create your own "tab bar" from scratch if you want to.
These apps are using native code, not HTML/CSS
Grab class-dump and find it out yourself!
(...most likely, these great enterprises wouldn't hire developers who dare making a 'native' iOS app using UIWebView and HTML...)
im new to ipad/iphone development. what are some ways to skin an ipad app? (eg: the notes app that came with the iPad) Is there any tutorials or code samples?
I think the question has to do with skinning your own apps instead of skinning Apple's pre-existing apps. Assuming this:
Any buttons can be easily skinned with images. Just add the image to your XCode project. Then, select the button in Interface Builder and in the attributes inspector you can choose the image there.
You can skin other views by adding UIImageView's that cover the whole view and then moving them into the background of the layout.
My app Rith uses all of the standard controls, but everything is skinned.