Search results for

build disappears

49,269 results found

Post

Replies

Boosts

Views

Activity

Microphone icon in menu bar not disappear
Hello, I am an audio developer, currently using macOS version 14.1.1. I noticed that after disabling the microphone, the small yellow dot in the Control Center disappears immediately, but the one in the menu bar takes about 20 seconds to disappear. I tested the built-in Voice Memos app and found the same behavior. Our users may be concerned about their privacy being violated, even though the software is not using the microphone at that time. We believe this is a bug, and the microphone icon in the menu bar should disappear immediately after the microphone is no longer in use. Do you have plans to fix this issue in future versions? Additionally, is there any workaround for the current version? As a supplement, we are using CoreAudio API with AudioDeviceStart & AudioDeviceStop, not AudioUnit.
0
0
1.2k
Nov ’23
List Embedded in ScrollView Disappears
This doesn't seem like an edge case design issue, so I can't imagine why I'm unable to get it to work and / or find a solution. I want to have an image at the top of the view, below that a list of items, and some text below the list. Regardless of what I attempt, the List disappears. I've tried using Section(header: x, footer: y) inside the List, but that completely throws everything out of whack, plus it's not really what I want to do; the Section becomes clickable and allows the contents to be hidden. (And, regardless, the Section footer is never displayed.) Can anyone point me in the right direction here? Am I just attacking this problem completely incorrectly? Example ContentView followed by extracted ListView. (The HeaderView is simply an Image and the FooterView is simply some Text blocks. Nothing complicated at all.) var body: some View { ttZStack{ Color.themeBackgroundColor .edgesIgnoringSafeArea(.all) VStack{ ScrollView{ HeaderView() ListView() FooterView() } } } } struct ListView: View { tt
2
0
4.3k
Oct ’20
Safari Experimental Feature disappeared in v15
Hello, in order to workaround non-working websockets with TLSv1.3 I was enabling NSURLSession WebSocket experimental feature. I've recently got a new MacBook with a brand new MacOS and latest Safari 15, where I found non-working websockets and didn't found NSURLSession WebSocket option. I am not sure at what point/version mentioned feature disappeared from the Develop menu... Is there any other way to enable it? Why it was removed? Anton
0
0
632
Sep ’21
Device Activity Monitor Schedules Disappear
Hey everyone, I have an app using the screen time api, I've had quite a few reports from users saying that our monitoring features stop working until they open our app. What happens is that activities and schedules set with the device activity monitor seem to disappear. This is something we check on app re-opens and so we schedule them again and that is why the monitoring starts working again. Of course our current solution is not optimal since our app is mainly passive. Has anyone experienced these kinds of issue ?
0
0
123
Mar ’25
Legit ratings, maybe reviews, disappearing
I have ratings - possibly reviews - that are disappearing. For example, in “Current Version” the rating just went from 28 stars to 21. Who knows what else has been deleted.I am currently running a free promotion and getting many downloads. Giving away my app is costing me money, so every rating and every review is very important. Why is some Apple computer automatically and arbitrarily deleting legitimate ratings and possibly reviews?I am a one-person independent developer and this is killing my business.
6
0
608
Oct ’15
UIAlertController disappearing since iOS 13
Good afternoon everyone, I have a problem with showing Alerts in iOS 13, my code is:On AppDelegate:func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. debugPrint(didFinishLaunchingWithOptions) let alert = UIAlertController(title: My APP, message:didFinishLaunchingWithOptions, preferredStyle: UIAlertController.Style.alert) alert.addAction(UIAlertAction(title: OK, style: .cancel, handler: { (action: UIAlertAction!) in debugPrint(OK) })) self.showAlertGlobally(alert) return true }On Custom View Controller:override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. let alert = UIAlertController(title: My App, message:viewDidLoad, preferredStyle: UIAlertController.Style.alert) alert.addAction(UIAlertAction(title: OK, style: .cancel, handler: { (action: UIAlertAction!) in debugPrint(OK) })) self.showAlertGlobally(alert) }A
Topic: UI Frameworks SubTopic: UIKit Tags:
15
0
15k
Oct ’19
App disappears after pkg installation
We're running into an issue with our pkg bundle where the main .app file disappears after installation and wanted to see if anyone has an idea about what would cause it. We have a pkg bundle with three separate apps, one primary app and two supporting apps. We distribute this pkg bundle directly to our users, who will manually install it on their devices (rather than through the app store). The installation itself will usually complete without any issues, and we aren't seeing anything in the install or system logs indicating that it was removed afterward (our postinstall script checks that all of the files exist and are in the correct locations), but after the installation the main app disappears while the rest of the files (including the supporting apps) we lay down are still present. Sometimes it will fail with an error similar to this: 2024-10-02 09:43:07-04 MBA-L-8114 installer[9894]: Error getting application status info for file:///Applications/.hiddenfolder/app1.app: Error Domain=NSCo
0
0
191
Jan ’25
iPad disappearing under Xcode devices and simulators
When I plug in my iPad, it appears for a few seconds and prompts me to trust the device, which I do, but a few seconds later it just disappears. When I disconnect and reconnect again, the same thing happens again. I tried restarting my devices, the terminal command, and trying different USB ports, but to no avail. My iPad does show up in Finder however. How can I resolve this issue? I'm on macOS 13.4, with Xcode 15 beta 2, and iPadOS 17. Any help would be greatly appreciated! ^ This screen appears when I disconnect and reconnect and it prompts me to click trust and enter my password, but then it just suddenly disappears ^This is what shows up when my iPad is disconnected
0
0
706
Jun ’23
AR Transparency issues (still disappearing objects)
We still have some issue facing AR transparency. Tried several different versions on the mesh but still no luck. Both solid as single face after recommendation on the forum. The problem is shown in the video. Only issue is go randomly disappearing objects within the object. When viewed from below all objects inside disappear. https://youtu.be/YKrkHiZYJP8
0
0
477
Oct ’21
Selection disappearing in NSTableView inside SwiftUI
I have a SwiftUI view which contains an NSTableView wrapped with an NSViewControllerRepresentable struct. This has a Coordinator, which I set up as the NSTableView's delegate. There is an implementation of tableViewSelectionDidChange to pass the selected row index up to the enclosing view. The problem is that I can click and select a row, but the selection disappears, usually on the first click, and always when clicking a column header to sort. I have looked at the various delegate methods for notifying about selection changing, and they don't seem to be called. How can I find where the selection is being changed?
4
0
2.1k
Mar ’21