Post

Replies

Boosts

Views

Activity

Reply to Questions Tags Saves Users Companies Labs Jobs Discussions Collectives Communities for your favorite technologies. Explore all Collectives Teams Now available on Stack Overflow for Teams! AI features where you work: search, IDE, and chat. Lookin
Welcome to the forum. Your question is not about app development. So you'd better ask on Apple Support Community: https://discussions.apple.com/welcome PS: make the titles of your posts shorter and more explicit. Title is not to tell a full story. Read advice #13: https://developer.apple.com/forums/thread/706527
Oct ’24
Reply to Guideline 2.3.7 - Performance - Accurate Metadata
It's great to provide screenshots, but please, reduce the size of each image. Read advice 10 here: https://developer.apple.com/forums/thread/706527 There are a lot of amounts, but are they prices ? Are any of them references to the price of the app or the service it provides ? If it is, as @endecotp wrote, remove them, replacing by $***. ** If not, explain very clearly to reviewer that the $ amounts are not related in anyway to the price of the service, they are just illustration of what a user finances may look like. Another thing. Are they real simulator screenshots ? We see the Dynamic Island partly below the notch, in a way I never saw before.
Oct ’24
Reply to Dismiss window with an ID on macOS <14
Did you consider using NSNotification instead ? addObserver in the window, which will close it Declare at top level (outside any class) public static let kForceClose = Notification.Name("forceClose") In viewDidLoad of the NSWindowController: NotificationCenter.default.addObserver(self, selector: #selector(closeIt(_:)), name: .kClose, object: nil) @objc func forceClose(_ sender: Notification) { self.window?.close() } Send notification in Button IBAction NotificationCenter.default.post(name: .kForceClose, object: self)
Oct ’24
Reply to Applying Custom Rounded Corners to a macOS Window
This should give a solution: https://stackoverflow.com/questions/42762856/nswindow-with-round-corners-in-swift let effect = NSVisualEffectView(frame: NSRect(x: 0, y: 0, width: 0, height: 0)) effect.blendingMode = .behindWindow effect.state = .active effect.material = .dark effect.wantsLayer = true effect.layer?.cornerRadius = 15.0 window.contentView = effect window.titlebarAppearsTransparent = true window.titleVisibility = .hidden window.isOpaque = false window.backgroundColor = .clear Does it ?
Oct ’24
Reply to Task, onAppear, onDisappear modifiers run twice
I could not test on iOS 17 (my sample project crashes Xcode 15.3). Do you confirm it works there ? I see the same on iOS 18: DetailView initialized DetailView appeared DetailView task executed -->> button tapped DetailView disappeared DetailView appeared DetailView disappeared DetailView task executed This discussion may be interesting to read, even it did not let me understand what happens: https://fatbobman.com/en/posts/mastering_swiftui_task_modifier/
Oct ’24
Reply to Rejection from App Store Review
Welcome to the forum. There are multiple reasons for spam rejection. your app is too similar to another app or shares a lot of similar code with another app your app belongs to a category which is over crowded and thus rejected unless it has very specific and valuable features Could you show the complete rejection message and tell which category your app is ?
Oct ’24