Post

Replies

Boosts

Views

Activity

Reply to searchable: Add an auxilliary search view
Not sure I understand. Once search is completed, does isSearching turn to false ? Then it is normal that the search View disappears. Do you want to keep the SearchView always visible ? If so, I see at least 2 options: remove the if isSearching test add a view when isSearching is false if isSearching { VStack {...my auxilliary view...} } else { // Call a View of the same height than your auxilliary View }
Topic: UI Frameworks SubTopic: SwiftUI
Sep ’24
Reply to "Sign in with Apple" logo - how to make personalized for MacOS?
You have ways to customise le Sign In as described here : https://developer.apple.com/design/human-interface-guidelines/sign-in-with-apple#sign-in-with-apple-buttons   using my customized logo What customisation do you want ? You cannot create your own logo but only use Apple provided icons, as explained in the document: Use only the logo artwork downloaded from Apple Design Resources; never create a custom Apple logo.
Topic: Privacy & Security SubTopic: General Tags:
Sep ’24
Reply to Debugger messages not showing
As "killed" is displayed, that shows that messages are sent and displayed. When you speak of debugger console, do you mean the window at the bottom right of Xcode ? What messages are you expecting ? Are they print() ? Did you check you have no filter active in the console ? Could you show the code for which you would expect messages in the log ?
Sep ’24
Reply to Swiftui Bug - Button (only top part is clickable)
I've no sure explanation, but it seems that the TabView is overlaying the button and intercepting the taps. I made it work by adding a Spacer: struct ContentView: View { var body: some View { VStack(spacing: 0) { ScrollView(.horizontal) { HStack { Button(action: {print("Button tapped")}, label: { ZStack { Color.green Text("Button") .padding(8) .contentShape(Rectangle()) } }) } } .background(Color.blue) .frame(height: 40) Spacer() // <<-- ADDED this TabView { ZStack { Color.yellow Text("my view") } .onTapGesture { print("View tapped") } } } .background(Color.yellow) // <<-- ADDED this so that Spacer is yellow as well and not white } } You could file a bug report if you don't get a better explanation here.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’24
Reply to iOS 17.6.1 vs app issue
How are you concluded that the problem comes from the app ? Did the user repeat the test after closing the app ? When you tested the app, did you check in Xcode for processor use ?
Topic: Design SubTopic: General Tags:
Sep ’24
Reply to Software
There isn't even a question on your post which is totally incomprehensible and waste of time of those who look at it.. What is the purpose of the huge (uselessly huge) screenshot ? As you seem new at posting on the forum, you should read carefully the good practices: https://developer.apple.com/forums/thread/706527 Have a good day.
Sep ’24
Reply to [iOS 18] UITabBarController disable new switching animation
Could you post code for a minimum app so that we can test the effect ?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to voice
Please stop spamming the forum.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Help required to identify the cause of the crash
It seems you are using Alamofire. Have you checked the version is compatible with Xcode and iOS version you are using ? Could you show GaugeLayer.draw(in:) function? App Termination Reason: SIGNAL 5 Trace/BPT trap: 5 In case that may give a hint: https://forums.developer.apple.com/forums/thread/672555
Replies
Boosts
Views
Activity
Sep ’24
Reply to App privacy
I don't track my thing but in the application code I use permissions ask Why do you ask for permission if you don't track ? In that case, you should also declare in Appstore Connect that you don't collect data.
Replies
Boosts
Views
Activity
Sep ’24
Reply to searchable: Add an auxilliary search view
Not sure I understand. Once search is completed, does isSearching turn to false ? Then it is normal that the search View disappears. Do you want to keep the SearchView always visible ? If so, I see at least 2 options: remove the if isSearching test add a view when isSearching is false if isSearching { VStack {...my auxilliary view...} } else { // Call a View of the same height than your auxilliary View }
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Sep ’24
Reply to "Sign in with Apple" logo - how to make personalized for MacOS?
You have ways to customise le Sign In as described here : https://developer.apple.com/design/human-interface-guidelines/sign-in-with-apple#sign-in-with-apple-buttons   using my customized logo What customisation do you want ? You cannot create your own logo but only use Apple provided icons, as explained in the document: Use only the logo artwork downloaded from Apple Design Resources; never create a custom Apple logo.
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Debugger messages not showing
As "killed" is displayed, that shows that messages are sent and displayed. When you speak of debugger console, do you mean the window at the bottom right of Xcode ? What messages are you expecting ? Are they print() ? Did you check you have no filter active in the console ? Could you show the code for which you would expect messages in the log ?
Replies
Boosts
Views
Activity
Sep ’24
Reply to Swiftui Bug - Button (only top part is clickable)
I've no sure explanation, but it seems that the TabView is overlaying the button and intercepting the taps. I made it work by adding a Spacer: struct ContentView: View { var body: some View { VStack(spacing: 0) { ScrollView(.horizontal) { HStack { Button(action: {print("Button tapped")}, label: { ZStack { Color.green Text("Button") .padding(8) .contentShape(Rectangle()) } }) } } .background(Color.blue) .frame(height: 40) Spacer() // <<-- ADDED this TabView { ZStack { Color.yellow Text("my view") } .onTapGesture { print("View tapped") } } } .background(Color.yellow) // <<-- ADDED this so that Spacer is yellow as well and not white } } You could file a bug report if you don't get a better explanation here.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to iOS 17.6.1 vs app issue
How are you concluded that the problem comes from the app ? Did the user repeat the test after closing the app ? When you tested the app, did you check in Xcode for processor use ?
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to How to delete the posts you have posted on the forum?
Simple answer: impossible. What you can do: in the first hour after the post, Edit it and modify title (as "erroneous post) and replace the content by a simple "deleted" ask the moderator to remove it, but this is not granted.
Replies
Boosts
Views
Activity
Sep ’24
Reply to "applicationWillTerminate" not called
Congrats. But maybe what you found can be of interest for others ? That's a good practice on the forum to explain how and issue was solved. Not only announce it was solved (which doesn't really matter for other developers)
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to drag and drop cards
Could you show the code that is expected to display the object ? That would help to help…
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Code with Swift Assist
You will not get any precise date before an official announcement. Thos who know won't tell, those who tell don't know. So that's just a question to get rumours and unverified answers. Anyway, end of year is just in less than 4 months.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Which components does the controlSize modifier work on
According to this: https://stackoverflow.com/questions/78409547/why-controlsize-property-is-not-working-in-swiftui On iOS and Mac Catalyst, only buttons are affected But I tested the example given in the doc, without any visible effect. You should file a bug report against documentation.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Software
There isn't even a question on your post which is totally incomprehensible and waste of time of those who look at it.. What is the purpose of the huge (uselessly huge) screenshot ? As you seem new at posting on the forum, you should read carefully the good practices: https://developer.apple.com/forums/thread/706527 Have a good day.
Replies
Boosts
Views
Activity
Sep ’24