554 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
187
views
Expo react-native-tvos: pod install error after prebuild (EXConstants issue)
I am trying to create bare expo react native app for Apple TV. I am following Expo documentation so I am starting with npx create-expo-app MyTVProject -e with-tv. Next is export EXPO_TV=1 and then ...
1
vote
1
answer
330
views
[tvOS 18][SwiftUI] Severe ScrollView Lag after Update
I've upgraded both of my Apple TVs to tvOS 18. Since then, my app developed with SwiftUI has become almost unusable due to severe lag, particularly when scrolling in a LazyVStack. On the A1625 (Apple ...
0
votes
1
answer
384
views
Why Scrolling is not working in apple tv?
I have LazyHGrid inside the scrollview but it's not scrolling. I've tried multiple options but unfortunately didn't work.
ScrollView(.horizontal) {
LazyHStack {
ForEach(1.....
1
vote
0
answers
50
views
Getting Swift_header compilation error for tvOS
I have a tvOS project contains an App target and 3 static libraries:
EntryPoint – Static library that contains main , AppDelegate and SceneDelegate
Experience – Static library containing my UI ...
1
vote
0
answers
200
views
Receive data from Push notifications on tvOS
I tried to get some data from a push notification on tvOS.
Sent a message via Firebase and received it using this function:
extension AppDelegate: UNUserNotificationCenterDelegate {
func ...
-1
votes
1
answer
446
views
tvOS - SwiftUI - LazyVGrid Item ContextMenu not displaying as expected
my problem is very simple, i'm trying to implement something similar to the Apple TV app Context menu :
appletv+ app example
But in my case, the contextmenu is opening outside of the LazyVGrid and not ...
1
vote
0
answers
110
views
Callback method for Zoom In/Zoom Out video in AVPlayerViewController in tvOS
I am trying to find the method from where I can detect whenever user zoom in/out video in tvOS by enabling Tap-to-Zoom Video -> On.
Please help me!!!
0
votes
0
answers
272
views
'UIKeyboardDidShowNotification' is unavailable: not available on tvOS error in react-native-safe-area-context after React Native update
I recently updated my React Native version from 0.69.8-2 to 0.71.11 and started encountering an error that I haven't been able to resolve. The error message is:
'UIKeyboardDidShowNotification' is ...
0
votes
0
answers
163
views
Is there a way to turn on my Apple TV via my Raspberry Pi (Wifi, Bluetooth)?
I am trying to automate some stuff and it's all going fine but I am a bit stuck, I can turn my tv on/off via a HTTP request but I was wondering if I could do something similar to turn on my Apple TV. ...
1
vote
0
answers
51
views
Numeric Keyboard Overlapping with Backspace Button in Apple TV Hebrew Application On Digit Entry Screen
We have developed an Apple TV application with a Hebrew (RTL layout) interface. The application utilizes a Swift-based Digit Entry view controller for pin entry. However, we are encountering an issue ...
1
vote
0
answers
340
views
AppleTv In app purchase on request subscription First time open login prompt and payment failed next time it works fine
I have implemented react-native-iap in my tvos project. First time when I go for purchase subscription and call requestPurchase method it open AppleId login prompt and after login it failed payment ...
0
votes
0
answers
56
views
UserDefaults is not saving data after suddenly closing device
I am logging app and loading home page all task working properly. After login I save user data in UserDefaults. But if I suddenly close Apple TV then I am getting UserDefaults data as nil.
I am using ...
0
votes
1
answer
80
views
Saving user data to internal memory - Apple TV Swift
I am trying to save access token with in the application registry and getting saved success fully, but after rebooting the device and coming back to the device registry is getting cleared and user is ...
1
vote
0
answers
195
views
Manually Handling Focus State in tvOS 14: Alternatives to @FocusState and .focusable
How can we manually handle focus state in tvOS 14, since the @FocusState property wrapper and .focusable modifier are only available from tvOS 15 onwards? Are there any alternative approaches or best ...
1
vote
0
answers
176
views
Cannot show notification using FCM to standalone Apple tvOS
Description
I am developing a standalone app for Apple tvOS. I am running the following code
import SwiftUI
import Firebase
class AppDelegate: UIResponder, UIApplicationDelegate, ...