Post

Replies

Boosts

Views

Activity

Reply to ScrollView won't scroll
I have the same issue with SwiftUI ScrollView on tvOS. public var body: some View { ScrollView(.vertical) { Text(attributedLicenseBody) .font(.caption) .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading) .padding() .onAppear { attributedLicenseBody = attribute(library.licenseBody) } } .navigationBarTitle(library.name) ._licenseViewStyle(licenseViewStyle) { if let url = library.url { openURL(url) } } .background(licenseViewStyle.background) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’25
Reply to [tvOS] ScrollView with Text does not scroll
I have the same issue just now. public var body: some View { ScrollView { Text(attributedLicenseBody) .font(.caption) .frame(maxWidth: .infinity, alignment: .leading) .padding() .onAppear { attributedLicenseBody = attribute(library.licenseBody) } } .navigationBarTitle(library.name) ._licenseViewStyle(licenseViewStyle) { if let url = library.url { openURL(url) } } .background(licenseViewStyle.background) } That codes scroll nicely on iOS.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’25
Reply to Debug Failed in Xcode Simulator
Xcode 16.3 is one of the most buggy updates I've ever experienced. I had to downgrade and revert the upgrade to 16.2. Xcode 16.3 and macOS 15.4 were completely unusable for our project. What works for me in our project is XCode 16.2 and macOS 15.4 running on real device
Replies
Boosts
Views
Activity
Apr ’25
Reply to ScrollView won't scroll
I have the same issue with SwiftUI ScrollView on tvOS. public var body: some View { ScrollView(.vertical) { Text(attributedLicenseBody) .font(.caption) .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .leading) .padding() .onAppear { attributedLicenseBody = attribute(library.licenseBody) } } .navigationBarTitle(library.name) ._licenseViewStyle(licenseViewStyle) { if let url = library.url { openURL(url) } } .background(licenseViewStyle.background) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’25
Reply to [tvOS] ScrollView with Text does not scroll
I have the same issue just now. public var body: some View { ScrollView { Text(attributedLicenseBody) .font(.caption) .frame(maxWidth: .infinity, alignment: .leading) .padding() .onAppear { attributedLicenseBody = attribute(library.licenseBody) } } .navigationBarTitle(library.name) ._licenseViewStyle(licenseViewStyle) { if let url = library.url { openURL(url) } } .background(licenseViewStyle.background) } That codes scroll nicely on iOS.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’25
Reply to Previously working projects fail
I'm stumbled upon this issue right now. Anyone got any progress? I'm trying to use the async/await version of the WKWebsiteDataStore but I don't think it matters.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to ATT bug, don't wait for user
I can confirm this bug happens on tvOS 17.4. I have an iOS running on 16.3, which doesn't have the bug.
Replies
Boosts
Views
Activity
May ’24
Reply to Xcode 13.0 can't pair to Apple TV 4K (tvOS 15.0)
None of the solutions here actually solved my problem. What worked for me was to reset it to the factory settings and pairing it again.
Replies
Boosts
Views
Activity
Oct ’21