Use for questions specific to Apple's iOS 17 mobile operating system for iPhone and iPad, released in 2023. General iOS questions should use the [ios] tag.
Questions tagged [ios17]
67 questions
1
vote
1 answer
How to setup an iOS 17 intractable Widget using AppIntents from an SPM package?
I've setup an intractable Widget in iOS 17 which uses an AppIntent from an SPM package but nothing works when you tap on the button in the widget.
Supposedly you should be able to use AppIntentsPackage, which should make it possible to use…

Mattias Farnemyhr
- 4,148
- 3
- 28
- 49
1
vote
1 answer
SwiftUI on iOS 17: Toolbar NavigationLink 's label problem
I have a "problem" with my iOS 17 app. My view don't correctly appear like it was before iOS 17 and now only shows the SFSymbol but not the Text.
NavigationView {
ZStack(alignment: .bottomTrailing) {
//my body
}
.toolbar {
…

Clément
- 31
- 3
1
vote
1 answer
ToolBarItem in Navigation bar is not changing color - iOS 17 SwiftUI
In my code below I am trying to have both views with the systemImage "line.3.horizontal.circle.fill" be green. But the view as a toolbaritem is showing as default blue. I can currently on the new Xcode and running on iOS 17
struct SwiftUITestView:…

Zach
- 33
- 1
- 6
1
vote
1 answer
Actor isolate @Observable type
Back in WWDC 2021’s Discover concurrency in SwiftUI, they recommend that you isolate the ObservableObject object to the main actor. E.g.:
struct ContentView: View {
@StateObject var viewModel = ViewModel()
var body: some View {
…

Rob
- 415,655
- 72
- 787
- 1,044
1
vote
0 answers
SwiftUI iOS 17 gradient tab bar - Apple Music
In IOS17 beta, Apple Music has a gradient with the MiniPlayer.
Has Apple made a public API for this or would a custom implementation be required, if so what’s the best approach?

Kyler Phillips
- 41
- 10
1
vote
1 answer
SwiftData error NSInvalidArgumentException when assigning relationship
I have the following code:
import SwiftUI
import SwiftData
struct ContentView: View {
@Environment(\.modelContext) private var modelContext
var body: some View {
VStack {
Image(systemName: "globe")
…

David Schilling
- 2,442
- 3
- 17
- 24
1
vote
0 answers
is possible to open Phone app from Widget in iOS 17?
is possible to open Phone app from Widget in iOS 17??
From iOS 17 beta, iOS Contact app have an interactive widget with call and message button, that has action to open Phone, Messenger, Whatsapp, etc.
It's any API available to open another app from…

Moon Knight
- 11
- 2
1
vote
0 answers
Xamarin iOS Compatibility Issues with latest Xcode 15
I am currently testing the compatibility of my iOS applications developed using Xamarin iOS. However, I'm encountering problems with both Xcode 15 beta and Visual Studio 2022 (version 17.6) on my MacBook.
Specifically, I am facing pairing issues…

Apekshit
- 767
- 2
- 13
- 27
1
vote
3 answers
Handling data flow in iOS 17 and using observed variables inside a TextField
I'm trying to migrate to iOS 17 using @Observable.
I have a global view model of the app where I call an Exam model with all the values I need inside.
According to Apple guidelines I'm using my view model like this
import Foundation
import…

kAiN
- 2,559
- 1
- 26
- 54
1
vote
1 answer
UILabel View with rounded corner radius does not work on iOS 17 Beta - Xcode 15 Beta
I am using a UILabel view and I have set the corner radius of it so as to make it rounded using runtime attributes.
This is how it appears on iOS 16.x or below (any iOS 16 or below).
and this is how it looks on iOS 17 Beta.
The dot appears like a…

Abhishek C. Gidde
- 135
- 1
- 8
0
votes
0 answers
Problem with ScrollView in scroll offset IOS 17
I have a problem with the SwiftUI component in the beta version of iOS 17.
In iOS 16, the "parallaxedView" element would stretch its height when scrolling to the top of the screen, and upon releasing the finger, the height would return to its…

Sebastian Kierklo
- 23
- 1
0
votes
0 answers
Problem with microphone key in iOS native app and iOS 17
I don't know why it works in native iOS app and it doesn't work in my app. When I have more that one keyboard chosen in iPad Settings and I turn wifi off then the microphone key is greyed out and when I start typing anything the keyboard is so slow…

Monika Szumiec
- 21
- 2
0
votes
0 answers
Parameterized App Shortcut isn’t showing up correctly in Spotlight (iOS 17)
I’m working on supporting iOS 17’s new Shortcuts features. I have a multiple App Shortcuts including one that launches the app in a selected tab. The tab selection is done via a custom AppView enum that conforms to the AppEnum protocol.
The problem…

alexkaessner
- 1,966
- 1
- 14
- 39
0
votes
0 answers
How to remove unused languages from Localizable.xcstrings
I created the file and added a language that I don't want to translate in my app, how can I delete the language and keep only the others that I want?
In the image, for example, I wanted to keep only English and Portuguese, and delete Danish and…

Haroldo Gondim
- 7,725
- 9
- 43
- 62
0
votes
1 answer
MBProgressHUD setProgress in iOS 17
I'm using an older pod, the MBProgressHUD, that is returning an error when trying to run on iOS 17.0:
Multiple methods named 'setProgress:' found with mismatched result, parameter type or attributes.
It's fairly deeply integrated into the app so I…

Anden87
- 970
- 1
- 9
- 19