Post

Replies

Boosts

Views

Activity

Reply to Welcome to Apple Developer Community Spaces!
oh. Yes - I do recognise what you mean. Yes, correct - the categories have been reduced quite a bit and there is a lot of 'white space' on the overview page which could actually be supplemented with more information such as more (sub)categories. How to achieve a different presentation with more content is beyond my knowledge. Unfortunately I cannot help any further. But I hope that someone from Apple's changeover team is reading this and can initiate further adjustments accordingly. I would also definitely support this if there were even more categories (and they should also be more technical) on the entry page. Follow-up: I would suggest that you create a specific new post with this topic to attract more attention and focus.
May ’24
Reply to Scheme Setting Not Persisting For Associated Target
Hi I think it works the other way around. at least for me in Xcode 15 and also now in Xcode 16: A schema definition is neutral at the beginning and only in the schema definition can you determine or assign the target. Xcode does this for you using Autocreate. But you can also edit it yourself. A schema can contain one (1) target or several. Facit: so, selecting the Target in Project-Navigator does not change Schema. at least for me since "ever". Hope it helps. Take care. Single Schema related to Target: Screenshots (Xcode 16 Beta) Single Schema related to multiple Targets (Build all):
Jun ’24
Reply to needs -Onone Swift optimization level
hi. I think you should provide more log data from the failing build process. did you made changes in build settings about compiler optimization flags/settings? maybe overwritten by mistake some values? compare with other easypeasy sample project…any difference in build settings? same result? check build setting: SWIFT_OPTIMIZATION_LEVEL -Onone is to my knowledge more or less the default setting. so if missing, just create/modify the entry in the project build settings.
Topic: Programming Languages SubTopic: Swift Tags:
Jul ’24
Reply to How to make an updatable ForEach loop SwiftUI
Hi, you are working with a dictionary type. you have some issues in your code: This loop iterates from 0 to flags.count. flags.count returns 1 since there’s one item in the flags dictionary. But the loop will iterate from 0 to 1, meaning it will run two times, which may not be the intended behavior. This could lead to an off-by-one error. AND: you are not showing the dictionary entry in your Text View. You have to iterate over your Dictionary-Type. You are showing just the constant "hey". you have to change the code to something similar to: like ForEach(Array(flags.keys), id: \.self) and... Text("\(flag)") would propose you go to doc about dictionary. https://docs.swift.org/swift-book/documentation/the-swift-programming-language/collectiontypes#app-top)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’24
Reply to Xcode should include simple themes. Agree??
Hi! I completely agree, I also needed some time to get rid of the clutter and come up with a solution that worked for me. We have the same taste! mine is based on nord style...with IBM Plex font in use. same same, but different... ;-] GitHub Link
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Welcome to Apple Developer Community Spaces!
Hi...look at the Search Bar on top ... is this what you are looking for?
Replies
Boosts
Views
Activity
May ’24
Reply to Welcome to Apple Developer Community Spaces!
oh. Yes - I do recognise what you mean. Yes, correct - the categories have been reduced quite a bit and there is a lot of 'white space' on the overview page which could actually be supplemented with more information such as more (sub)categories. How to achieve a different presentation with more content is beyond my knowledge. Unfortunately I cannot help any further. But I hope that someone from Apple's changeover team is reading this and can initiate further adjustments accordingly. I would also definitely support this if there were even more categories (and they should also be more technical) on the entry page. Follow-up: I would suggest that you create a specific new post with this topic to attract more attention and focus.
Replies
Boosts
Views
Activity
May ’24
Reply to What’s New with Apple Developer Forums
Hi, appreciate. But it the link above about feedback/feature requests does not work... :-[ Thanks for fixing.
Replies
Boosts
Views
Activity
May ’24
Reply to Scheme Setting Not Persisting For Associated Target
Hi I think it works the other way around. at least for me in Xcode 15 and also now in Xcode 16: A schema definition is neutral at the beginning and only in the schema definition can you determine or assign the target. Xcode does this for you using Autocreate. But you can also edit it yourself. A schema can contain one (1) target or several. Facit: so, selecting the Target in Project-Navigator does not change Schema. at least for me since "ever". Hope it helps. Take care. Single Schema related to Target: Screenshots (Xcode 16 Beta) Single Schema related to multiple Targets (Build all):
Replies
Boosts
Views
Activity
Jun ’24
Reply to Xcode's Vim Mode - further development?
with Xcode16 we got the dot command. yeah, a small step…but a step. thank you, apple.
Replies
Boosts
Views
Activity
Jun ’24
Reply to needs -Onone Swift optimization level
hi. I think you should provide more log data from the failing build process. did you made changes in build settings about compiler optimization flags/settings? maybe overwritten by mistake some values? compare with other easypeasy sample project…any difference in build settings? same result? check build setting: SWIFT_OPTIMIZATION_LEVEL -Onone is to my knowledge more or less the default setting. so if missing, just create/modify the entry in the project build settings.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Xcode's Vim Mode - further development?
one more...! 😄 registers are available: use " works quite well with the option of numerical and named registers.
Replies
Boosts
Views
Activity
Jul ’24
Reply to How to use ESC to show completion suggestions in Xcode 13 vim mode
your question was asked a long time ago... perhaps it has long since been resolved. I'm also aware of this conflict with the keyboard layout. and unfortunately I don't have a direct solution myself. You can also solve the code completion with control-space.
Replies
Boosts
Views
Activity
Jul ’24
Reply to iOS 18 beta 2
maybe it helps to go further and install the latest beta (#4). [https://developer.apple.com/download/)
Replies
Boosts
Views
Activity
Aug ’24
Reply to How to make an updatable ForEach loop SwiftUI
Hi, you are working with a dictionary type. you have some issues in your code: This loop iterates from 0 to flags.count. flags.count returns 1 since there’s one item in the flags dictionary. But the loop will iterate from 0 to 1, meaning it will run two times, which may not be the intended behavior. This could lead to an off-by-one error. AND: you are not showing the dictionary entry in your Text View. You have to iterate over your Dictionary-Type. You are showing just the constant "hey". you have to change the code to something similar to: like ForEach(Array(flags.keys), id: \.self) and... Text("\(flag)") would propose you go to doc about dictionary. https://docs.swift.org/swift-book/documentation/the-swift-programming-language/collectiontypes#app-top)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Creating New Revision of Xcode Project
Hi, what about Source Control and creating new Branch? [https://developer.apple.com/documentation/xcode/source-control-management)
Replies
Boosts
Views
Activity
Sep ’24
Reply to Xcode 10 Beginner
Hi, you should upgrade to current hardware/OS Level, and Xcode Version/provided SDKs. Then you have also new SDK available like SwiftUI. [https://developer.apple.com/documentation/swiftui/)
Replies
Boosts
Views
Activity
Sep ’24
Reply to Xcode 16.1* / Canvas refresh / option+cmd+p is gone. :-<
BTW: meanwhile reported to Apple: FB15374055
Replies
Boosts
Views
Activity
Oct ’24
Reply to The Xcode Source Control functionality freezes.
similar here: enabling the Diff-View also triggers beachball. No pattern detected yet. still analyzing/testing/try to understand pattern.
Replies
Boosts
Views
Activity
Oct ’24