Post

Replies

Boosts

Views

Activity

Reply to Lag
The purpose of the forum is not to discuss performance of third party apps. In fact, I don't care reading about gaming performance on pubgmobile in this forum. Have a good day and contact the app developer forum.
Topic: Graphics & Games SubTopic: General Tags:
Jan ’25
Reply to SwiftUI Issues on iOS 16: App Freezes, Buttons Unresponsive, and Missing Data (Works Fine on iOS 17)
Does it work in simulators iOS 16 ? Have you found any device where it works with iOS 16 ? How is it you discover the issue only now ? Did it work in the past ? Did you change Xcode version in between ? Can you test with Xcode 16 ? It seems that it affects older devices iPhone 8, iPhone 12, iPhone 8 Plus, iPhone 8 Plus So is it only iOS related ?
Topic: UI Frameworks SubTopic: SwiftUI
Jan ’25
Reply to Shocked by Apple Developer Program Experience – Account Banned Without Explanation
It's a fact that the rules on Appstore are much more strict than on other platforms, specially for money games like casino. One may appreciate or not, but that's it. So, expecting to "replicate" what was done on other platform when submitting to Appstore is not the best approach. In addition, as darkpaw explained, it is really important to discuss with reviewer in good faith, transparency and of course respectful way (as reviewers always do) even to explain why you think their decision was wrong. Doing differently may lead to unexpected consequences. BTW, if your account was banned, you will ne be able to publish on Appstore. But you may try to appeal this ban (need to have convincing arguments).
Jan ’25
Reply to Assertions in View bodies
I would do it in onAppear: struct Foo { var valid : Bool } struct FooView: View { var foo: Foo = Foo(valid: false) var body: some View { Text("Check assert") .onAppear() { assert(foo.valid) } } } Other option is to do it in init()
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jan ’25
Reply to Getting precise text position with Swift for MacOS
Could you describe your use case more in detail ? Is it the text from your app, or any text (like a Finder file name) that may appear on screen ? If the former, is it a NSTextField ? Do you know which window it is in ? And then, with the window position you should be able to compute text position. If the latter, text may just be an image, for OCR may be the best way to go. But effectively may be slow.
Jan ’25