Questions tagged [tvos10]

Use this tag for version specific questions about tvOS 10 - the operating system developed by Apple for the Apple TV. When using this tag also include the more generic [tvos] tag where possible.

39 questions
8
votes
4 answers

Scroll in UIScrollView with tvOS

I stuck with scrolling content inside UIScrollView in my tvOS app. I have scrollView with height = 400 and width = 400. Inside this scrollview I have non-scrollable UITextView with height = 800 and width = 400. So I want to scroll this text. But my…
moonvader
  • 19,761
  • 18
  • 67
  • 116
5
votes
1 answer

how to use preferredFocusEnvironments insted of preferredFocusedView for ios 10?

I am working on apple tv os application. I want to move focus on particular UiButton but I don't know how to use preferredFocusEnvironments instead of preferredFocusedView ? I am able to use preferredFocusedView but for this variable is…
vikas prajapati
  • 1,868
  • 2
  • 18
  • 26
5
votes
2 answers

Focus disappearing when opening a UIAlertController on tvOS 10 GM

I want to display a UIAlertController on top of a UIViewController with a UICollectionView inside. The collection view needs to focus on startup, so I overrode the preferredFocusableView variable as follows: override var preferredFocusedView:…
Nicola Giancecchi
  • 3,045
  • 2
  • 25
  • 41
4
votes
0 answers

Settings.bundle not respecting app group for shared NSUserDefaults on tvOS

I have a tvOS application with an accompanying topshelf extension. For the main app and the extension to share UserDefaults, it is necessary to create an App Group with a unique identifier of the form group.com.organisation.app.identifier and to…
idrougge
  • 633
  • 5
  • 12
4
votes
0 answers

Is there any framework like SFSpeechRecognizer in tvOS?

I want to build an app for tvOS which will recognise voice and convert it into text and based on that text it will perform some actions. I have already done that in iOS 10 using SFSpeechRecognizer class of Speech Framework. I could not found any…
4
votes
3 answers

How to check if Dark Appearance is enabled tvOS

How do I check if a user has enabled Dark Appearance on their Apple TV?
Daniel Storm
  • 18,301
  • 9
  • 84
  • 152
3
votes
1 answer

Remove UITableView scroll Indicators in tvOS

Question: How do I remove the vertical glowing scroll indicators in a TableView (or to change it's color) ? Description: Since UITableView is a subclass of UIScrollView I've been trying to find the cause behind it. I've attempted to disable the…
kemicofa ghost
  • 16,349
  • 8
  • 82
  • 131
3
votes
4 answers

tvos 10 SDK duplicate class implemented in multiple private frameworks causes crash

I have an tvml app that works great on tvos 9, but when attempting to run on tvos 10.0 simulator the application fails to load and I am presented with a series of errors that begin with: class PLBuildVersion is implemented in both …
Yup.
  • 1,883
  • 21
  • 18
2
votes
2 answers

UIUserInterfaceStyle reverting to UIUserInterfaceStyleDark on each reopen

I'm having the strangest issue with a tvOS app where I check self.traitCollection.userInterfaceStyle to setup my UI according to light or dark mode in tvOS 10+. On initial launch, all works as expected, and with the system in Light mode,…
RealCasually
  • 3,593
  • 3
  • 27
  • 34
2
votes
2 answers

Unable to open YouTube URL to be played on YouTube tvOS Application

Question: How do I open a YouTube URL (from my tvOS Application) to the YouTube tvOS Application? Description: My url fits the youtube url scheme indicated by apple. The prints I get when I run this (on the actual apple tv device) is as…
kemicofa ghost
  • 16,349
  • 8
  • 82
  • 131
2
votes
2 answers

How to move focus at button in collectionview cell in tvos application?

I am working on apple TV application. In my app, I have made a screen which has a collection view. In that case, I am able to move focus at collection view cell but not able to move focus to the button which is in collection view cell so can anyone…
vikas prajapati
  • 1,868
  • 2
  • 18
  • 26
2
votes
1 answer

How to move focus at navigationbar's BarButtonItem in apple tv?

I am working on apple tv application.I want to move focus on navigation bar's BarButtonItem. actually when view controller hasn't any button or text field then focus moved on BarButtonItem but when I added button in view controller then focus not…
vikas prajapati
  • 1,868
  • 2
  • 18
  • 26
1
vote
1 answer

Change background of fullscreen keyboard TVOS app

I am working on TVOS app using Objective C code and storyboard. I want to change background color of full-screen keyboard to black but default color is light gray. Would it be possible to change the color of the full-screen keyboard?
V V
  • 774
  • 1
  • 9
  • 29
1
vote
1 answer

tvOS 11 display issue

I am facing display problem with my app after updating my Apple Tv to tvOS 11. There is margin on 4 sides of screen. Can Any body help me through this? Thanks in advance.
Aymen HARRATH
  • 474
  • 3
  • 15
1
vote
0 answers

Define next object after swipe in tvOS

I am new to tvOS and I have very simple app: 1) There is UISegmentedControl in top of screen that takes about 80% of screen width. 2) Right under UISegmentedControl I have UITableView and UIView with detailed information for each of cells (when user…
moonvader
  • 19,761
  • 18
  • 67
  • 116
1
2 3