Search results for

Account Locked

31,784 results found

Post

Replies

Boosts

Views

Activity

Reply to iOS 18.5 MDM Screen Lock
When a non-Mac device is managed using Account Driven User Enrollment, the device management server has limited capabilities related to the passcode. When User Enrollment was first introduced, installing a configuration profile containing a passcode payload would ignore all the keys in the payload and instead require a minimum of a non-simple 6 digit PIN. Starting in iOS 17 and aligned releases of other platforms, if the payload contains a maxInactivity key its value is ignored, however it removes the Never option from Settings > Display & Brightness > Auto-Lock. It's still possible for the user to select a shorter duration for Auto-Lock. The Apple documentation for the Passcode payload does not currently explain this. We're working on updating that documentation. Thank you for raising this issue, which helped us discover the omission. I don't know whether Microsoft Intune supports this maxInactivity key in this scenario. It's possible that Microsoft did not add support fo
Jul ’25
File/Folder access/scoping for background only apps
We create plug-ins for Adobe Creative Cloud and have run into an issue with respect to file/folder permissions. First, all of our libraries, code is code-signed and notarized as per Apple requirements but distribute outside of the Mac App store. We install a Photoshop plug-in and its mainly a UI which then executes a background app containing the business logic to read/write files. The background app runs as a separate process and is not in the Photoshop sandbox space so it doesn't inherit Photoshop permissions/scoping rules. Our plug-in communicates with the background process via ports etc. When a user chooses a file to process from lets say the Desktop, generally macOS first pops up a message that says ABCD background app is trying to access files from the Desktop do you grant it permission etc...This is also true for network mounted volumes or downloads folder. This message generally appears properly when everything is under an account with admin rights. However, when our tool is installed from a
8
0
145
Jul ’25
TabView + NavigationStack + ScrollView navigationTitle bug
Hello there! I've been struggline with this thing for a two days now, and seems like it's a bug in SwiftUI. Navigation title is jumping on top of the ScrollView's content when switching tabs in TabView. Steps to reproduce: Scroll one tab to the bottom so that the large title is hidden and the floating toolbar appears. Go to another tab in the tab bar. Go back to the initial tab (it is still scrolled), and press the current tab button again to scroll to the top. The navigation title will glitch and be on top of the content. The animation fixes if you scroll again manually. Video: https://share.cleanshot.com/PFCSKMlH Code (simplified): import SwiftData import SwiftUI @main struct MyApp: App { var body: some Scene { WindowGroup { TabsContentView() } } } // ... struct TabsContentView: View { enum Tab { case library, profile } @State private var selectedTab: Tab = .library var body: some View { TabView(selection: $selectedTab) { NavigationStack { YourLibraryList() .navigationTitle(Your Library) } .tabItem { Label(
2
0
215
Jul ’25
I have an application that uses Network Extension, and it occasionally triggers a kernel panic, resulting in a complete system freeze.
{bug_type:210,timestamp:2025-07-04 14:19:35.00 +0800,os_version:macOS 15.5 (24F74),roots_installed:0,incident_id:5457889A-1002-4389-BAE6-A447733EFD78} { build : macOS 15.5 (24F74), product : MacBookPro18,4, socId : 6001, socRevision : 11, incident : 5457889A-1002-4389-BAE6-A447733EFD78, crashReporterKey : 4ABE0CA2-C60B-8B0E-557A-C0BDEB1E9144, kernel : Darwin Kernel Version 24.5.0: Tue Apr 22 19:54:49 PDT 2025; root:xnu-11417.121.62/RELEASE_ARM64_T6000, date : 2025-07-04 14:19:35.95 +0800, panicString : panic(cpu 1 caller 0xfffffe00215f28e8): Kernel data abort. at pc 0xfffffe0021310d9c, lr 0x37a67e002116f050 (saved state: 0xfffffe60706d3240)nt x0: 0xfffffe2eaac676f8 x1: 0x0000000000000000 x2: 0xfffffe002116f050 x3: 0x0000000000000002nt x4: 0x0000000000002021 x5: 0xffffffffffffffff x6: 0x0000000000000000 x7: 0x0000006ddf79e068nt x8: 0xf9555cb919b50093 x9: 0x0000000000000000 x10: 0x0000000000000054 x11: 0x0000000000000000nt x12: 0xfffffe002477dfc8 x13: 0x0000000000000001 x14: 0x0000000000000052 x15: 0x0000000000
2
0
353
Jul ’25
Reply to Urgent Help Needed: Apple Developer Account Deleted Due to App Name Similarity Issue
I received a notification that my account will be marked for deletion after 30 days, even though I have no connection or affiliation with any other account that was previously removed for violations. Apple claims that I am involved in manipulation or have links to a violating account, but I genuinely have no idea what this is about. My app was published on the App Store for over two months without issues. However, after submitting an update, it was suddenly rejected under Guideline 4.3 (Spam). All previous updates were approved normally, and I did not make any significant changes that would justify this rejection. I feel this is a misunderstanding and would appreciate clarification. I’m a legitimate developer and just want to understand what went wrong.
Jul ’25
Local Push Connectivity - Unreliable Connection
Hi! My project has the Local Push Connectivity entitlement for a feature we have requiring us to send low-latency critical notifications over a local, private Wi-Fi network. We have our NEAppPushProvider creating a SSE connection using the Network framework with our hardware running a server. The server sends a keep-alive message every second. On an iPhone 16 with iOS 18+, the connection is reliable and remains stable for hours, regardless of whether the iOS app is in the foreground, background, or killed. One of our QA engineers has been testing on an iPhone 13 running iOS 16, and has notice shortly after locking the phone, specifically when not connected to power the device seems to turn off the Wi-Fi radio. So when the server sends a notification, it is not received. About 30s later, it seems to be back on. This happens on regular intervals. When looking at our log data, the provider does seem to be getting stopped, then restarted shortly after. The reason code is NEProviderStopReasonNoNetworkAvai
8
0
245
Jul ’25
Reply to Local Push Connectivity - Unreliable Connection
@DTS Engineer Hi Kevin! I am looking to test the sample project and will get back to you on that. Ruling an issue out, how frequently is the server emitting its keep-alive? One slightly less obvious detail here is that in a naive implementation where one device emits a keep-alive every 5s and the other requires a keep-alive every 5s, you can create a situation where what you're actually depending on/measuring is the consistency of latency between the devices, NOT the reliability of the connection itself. The server emits a keep-alive every 1s. Every time the app extension receives an event/keep-alive, it stores the last system time indicating when we last received communication. Then every 12s (sorry I forgot we updated from 5 -> 12s), we check Has the extension received any communication within the previous 12s. So I do not believe we would run into the scenario you are describing. What component actually sent that push? More specifically: Is your push provider extension still running, as it's the compone
Jul ’25
iOS 26 Floating Search Tab in UIKit
Does anyone have any documentation for how to achieve the floating search tab item in UIKit apps that use UITabBarController? The Liquid Glass UIKit video had code for minimizing the tab bar on scroll down, but I didn't see anything on keeping the search button locked to the bottom trailing edge (as in this screenshot below).
4
0
262
Jul ’25
Reply to File/Folder access/scoping for background only apps
First, jumping back to the testing side, have you specifically confirmed in your VM that you see the same problem when you login an admin user, followed by standard user. I want to be clear on this point because with any macOS investigation it's CRITICAL to differentiate between: A general issue that's happening on a broad set of machines configured in a specific, controlled way. A specific issue that's happening on a particular machine. The difference here is critical as it completely changes how you focus the investigation. In the first case, the focus is on finding out what makes your app different (because something about it is confusing the machine), while the second case is about what makes this machine different. We didnt have 2 sessions of our plug-in/Photoshop being invoked. The admin user was just physically logged in for other purposes. So, only 1 instance was running of Photoshop/our plug-in/background process always under the Standard user account. Huh. First off, how exactly does your p
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’25
Reply to The installer package includes files that are only readable by the root user
OK, here’s what I did today: I created a new VM with a macOS 15.5 guest, and then installed Xcode 16.4. I ran through the OS and Xcode setup processes, doing minimum configuration at each step. I chose English as the language because I very much doubt that this issue is related to your chosen language. In Xcode, I created a new project from Xcode’s macOS > App template. In Signing & Capabilities, I confirmed that Sign to Run Locally was selected [1]. I chose Product > Archive. I looked at the contents of the resulting archive: % cd /Users/quinn/Library/Developer/Xcode/Archives/2025-07-21 % ls -al Test788895 21-07-2025, 05.11.xcarchive/Products/Applications/Test788895.app/Contents/_CodeSignature total 8 drwxr-xr-x 3 quinn staff 96 21 Jul 05:11 . drwxr-xr-x 7 quinn staff 224 21 Jul 05:11 .. -rw-r--r-- 1 quinn staff 2200 21 Jul 05:11 CodeResources As you can see, the permissions are set correctly. You should be able to run this test locally, and I suspect that you’ll see the same results as I do. If yo
Topic: Code Signing SubTopic: General Tags:
Jul ’25