Please STOP polluting the forum.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Could you stop polluting the forum with your acrimonious posts ? You are unhappy with Apple ? That's your problem, not ours.
Welcome to the forum.
Maybe a suggestion here. When your PC becomes obsolete (it will some day), buy a Mac to replace. You'll use it not only for code.
Topic:
Developer Tools & Services
SubTopic:
Xcode
unused test app. I'd delete it if I could
Did you try to
connect to AppstoreConnect,
select the app
select "App information" in the left menus
remove app (link in "Additional information" at the bottom of the page)
Thanks to tell if that works and then don't forget to close the thread by marking the answer as correct. Otherwise please explain what you get when you try.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Could you attach the screenshot ?
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
I don't know how to write this
Write WHAT ? Do you expect someone to find it out from your screenshots, without any explanation ?
Topic:
Community
SubTopic:
Swift Student Challenge
Tags:
My personal feeling is that this behaviour makes sense.
When you get the tip, it is to know what the button is about.
One may then decide to trigger action or ignore the button.
The present scheme allows for the OR.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
AFAIK, it is not possible for views outside of the UIKit UIHostingController.
In fact views in SwiftUI are very different, they are just drawn when needed.
See discussion here: https://www.reddit.com/r/SwiftUI/comments/1kq7aop/how_to_get_subviews_of_a_swiftui_view_in_uikit/
But you wrote
SwiftUI view that I have wrapped using UIHostingController
So where's the problem ?
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
I cannot reproduce your issue.
In simulator, when I type
12*,
* is immediately converted to x
Then I end typing 34 and get 12x34.
Here are the logs:
Moving cursor from 2[any]
Moved to 4[utf8]
Moving cursor from 2[utf16]
Moved to 4[utf8]
Topic:
UI Frameworks
SubTopic:
SwiftUI
If you're not happy with Xcode, use another tool. But don't clutter the forum with pointless posts.
Topic:
Developer Tools & Services
SubTopic:
Xcode
This seems to answer (partially) to your question: https://stackoverflow.com/questions/49427144/is-there-a-technical-reason-to-use-swifts-caseless-enum-instead-of-real-cases
Topic:
Programming Languages
SubTopic:
Swift
Welcome to the forum.
Have a look in this 10 years old document: https://www.thomashanning.com/how-to-disable-arc-for-objective-c-files/
But that seems a bit useless.
You'd better read technical notes (e.g., https://clang.llvm.org/docs/AutomaticReferenceCounting.html) explaining how ARC works ; that's more efficient than spending so much time in reinventing.
If your goal is to "to create modern applications", you are probably heading in the opposite direction.
If you found what you needed in those references, don't forget to close the thread by marking the answer as correct.
Topic:
Programming Languages
SubTopic:
General
Tags:
Whatever the interest, that's not the purpose of the forum to ask for product evaluation even less ffor product promotion. You may use Test flight for it.
Did you try to simply import ?
import Foundation
import Metal
import QuartzCore
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
Your code, without any comment to explain what is being done at each step is the perfect example of how hard it is to understand a code in this condition.
In addition, I'm not sure to find where the border is added.
Is it in tempOverlayElements ?
for some AXGroup the children array access with AXChildren is empty
where in code do you build the array ?
Topic:
Accessibility & Inclusion
SubTopic:
General
Please STOP polluting the forum.
- Replies
- Boosts
- Views
- Activity
Could you stop polluting the forum with your acrimonious posts ? You are unhappy with Apple ? That's your problem, not ours.
- Replies
- Boosts
- Views
- Activity
Welcome to the forum.
Maybe a suggestion here. When your PC becomes obsolete (it will some day), buy a Mac to replace. You'll use it not only for code.
Topic:
Developer Tools & Services
SubTopic:
Xcode
- Replies
- Boosts
- Views
- Activity
unused test app. I'd delete it if I could
Did you try to
connect to AppstoreConnect,
select the app
select "App information" in the left menus
remove app (link in "Additional information" at the bottom of the page)
Thanks to tell if that works and then don't forget to close the thread by marking the answer as correct. Otherwise please explain what you get when you try.
Topic:
Developer Tools & Services
SubTopic:
Xcode
- Replies
- Boosts
- Views
- Activity
Could you attach the screenshot ?
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
- Replies
- Boosts
- Views
- Activity
I don't know how to write this
Write WHAT ? Do you expect someone to find it out from your screenshots, without any explanation ?
Topic:
Community
SubTopic:
Swift Student Challenge
Tags:
- Replies
- Boosts
- Views
- Activity
My personal feeling is that this behaviour makes sense.
When you get the tip, it is to know what the button is about.
One may then decide to trigger action or ignore the button.
The present scheme allows for the OR.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
- Replies
- Boosts
- Views
- Activity
AFAIK, it is not possible for views outside of the UIKit UIHostingController.
In fact views in SwiftUI are very different, they are just drawn when needed.
See discussion here: https://www.reddit.com/r/SwiftUI/comments/1kq7aop/how_to_get_subviews_of_a_swiftui_view_in_uikit/
But you wrote
SwiftUI view that I have wrapped using UIHostingController
So where's the problem ?
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
- Replies
- Boosts
- Views
- Activity
I cannot reproduce your issue.
In simulator, when I type
12*,
* is immediately converted to x
Then I end typing 34 and get 12x34.
Here are the logs:
Moving cursor from 2[any]
Moved to 4[utf8]
Moving cursor from 2[utf16]
Moved to 4[utf8]
Topic:
UI Frameworks
SubTopic:
SwiftUI
- Replies
- Boosts
- Views
- Activity
If you're not happy with Xcode, use another tool. But don't clutter the forum with pointless posts.
Topic:
Developer Tools & Services
SubTopic:
Xcode
- Replies
- Boosts
- Views
- Activity
This seems to answer (partially) to your question: https://stackoverflow.com/questions/49427144/is-there-a-technical-reason-to-use-swifts-caseless-enum-instead-of-real-cases
Topic:
Programming Languages
SubTopic:
Swift
- Replies
- Boosts
- Views
- Activity
Welcome to the forum.
Have a look in this 10 years old document: https://www.thomashanning.com/how-to-disable-arc-for-objective-c-files/
But that seems a bit useless.
You'd better read technical notes (e.g., https://clang.llvm.org/docs/AutomaticReferenceCounting.html) explaining how ARC works ; that's more efficient than spending so much time in reinventing.
If your goal is to "to create modern applications", you are probably heading in the opposite direction.
If you found what you needed in those references, don't forget to close the thread by marking the answer as correct.
Topic:
Programming Languages
SubTopic:
General
Tags:
- Replies
- Boosts
- Views
- Activity
Whatever the interest, that's not the purpose of the forum to ask for product evaluation even less ffor product promotion. You may use Test flight for it.
- Replies
- Boosts
- Views
- Activity
Did you try to simply import ?
import Foundation
import Metal
import QuartzCore
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
- Replies
- Boosts
- Views
- Activity
Your code, without any comment to explain what is being done at each step is the perfect example of how hard it is to understand a code in this condition.
In addition, I'm not sure to find where the border is added.
Is it in tempOverlayElements ?
for some AXGroup the children array access with AXChildren is empty
where in code do you build the array ?
Topic:
Accessibility & Inclusion
SubTopic:
General
- Replies
- Boosts
- Views
- Activity