After upgrading to build 13E5214d, sms/imessage tones no longer play when the screen is locked.
Search results for
Account Locked
31,833 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I am able to listen for existing orientation changes by using UIDevice.orientationDidChangeNotification. However I want to lock SwiftUI views to a particular orientation based on a requirement. Is there a way to do it without introducing AppDelegate?
Hey everyone,I have a problem which I can't solve.My app consists of a tab bar controller and in one tab bar I have an Table View Controller, in which can get to other View Controllers.Everything working fine so far.Now I want to give the user the ability to lock the app with TouchID, so not everyone can open the app.TouchID authentication is also working well.I have an extra View Controller, which I have set as the initial View Controller, in which the authentication should happen.If the authentication was successful, I am performing a segue to the Tab Bar Controller.This also works fine.But if the user then clicks on the tab bar item for presenting the Table View Controller, and the on a row to get to another View Controller, I am facing the problem that the View Controller for authentication shows up and not the expected View Controller.And I can't explain myself why this error occurs, maybe someone has an answer for me or a better solution for protecting the app through TouchID/Password. 🙂My pro
Hello.I use a plugin for customizing UI on the login screen. Version of Mac OS: 10.14.3 Mojave.My plugin is similar to this one by reference. https://developer.apple.com/library/archive/samplecode/NameAndPassword/In older versions of Mac OS, I could use such plugins to customize the lock screen too.Now the old way to connect the custom plugin on the lock screen does not work.Moreover, when I use authentication via a smart card on the lock screen, I have a pop-up window with a pincode input field, which I also cannot change by custom plugin.I have a questions regarding issue described above:Does the current MAC OS version have the ability to customize the lock screen? If yes, how it could be done? If no, will it be possible in the future versions of the MAC OS?Is it possible to switch lock screen to username-password instead of PIN-code when smart-card is in?Thank you in advance.
I'm in a similar situation, I have a personal account I've used for years and created a new account for my new business last week. Everything was accepted but this week I've been locked out, I had the same experience as you, went to forgot password, told I had to request access, and then received an email to say request denied. I called the support number that was on the email with my Apple Developer Program invoice and they recommended I submit a support request on developer.apple.com/contact/apple-id which I have now done.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Auto-Lock does not work on iPadOS 14.5 (18E5164h). I have tried to set auto-lock to 2 minutes, but even then, it does not auto-lock. It only locks when I press the power button or close my iPad smart cover.
Experiencing this on watchOS 5 beta 1 and watchOS 5 beta 2 with a Series 3 cellular. The watch will randomly restart. This seems to happen 5-10 times a day.In addition to restarting, the watch sometimes appear to get stuck between locked and unlocked. It appears locked (calendar complication says unlock to view and activity rings are greyed out), but when I tap the face to put in the passcode the watch is actually unlocked (a tap on the calendar complication takes me straight to the calendar app as if the watch is unlocked, a tap on the activity coimplication takes me straight to the activity app).I just installed the sysdiagnose profile and will be submitting my logs to Apple, but was curious if anyone else has had this issue and found any solutions since my watch is mostly useless as a result. I have unpaired/repaired and set up as a new watch, which helped for a little while and then the same behavior started to happen again.
I installed b4 and the watch is slow and actually locks up now requiring a force reboot. When it first launches, it works just fine but after a few minutes, it starts to bog down and eventually requires the force reboot. Unpairing and repairing doesn't fix it.I wonder if there is a weird process causing this. Is anyone else seeing this?
Hi,I need a feature to be implemented in one of our apps. To distinguish between authenticated and unauthenticated videos , I need to display a small Lock icon over the carousel/poster images in the rails.We are able to put this lock icon on the menu items, as there is a specific field in it called accessories with the value lock . But Is there any way to place the image on the rowlists ?
I am using AlarmKit to schedule alarms in an app I am working on, however my scheduled alarms only show up on the lock screen. If I am on the home screen or elsewhere I only hear the sound of the alarm, but no UI shows up. Environment: iOS 26 beta 3 Xcode 26 beta 3
Topic:
UI Frameworks
SubTopic:
SwiftUI
My background audio app stops updating its Live Activity after the iPhone locks, and doesn't resume updating the activity after tapping the screen or even after FaceID unlocks the device (without opening the lock screen). My live activity requests a ContentState update & iOS updates the content for the activity as below: Task{ log.debug(LiveActivityManager.updateLiveActivity() with new ContentState) await liveActivity.update( ActivityContent(state:contentState, staleDate:nil) ) } Below what my log looks like: <<<>>> DEBUG: LiveActivityManager.updateLiveActivity() with new ContentState iOS: Updating content for activity 0A519263-1E46-4BB6-BA4F-F3DDBC081AB4 DEBUG: LiveActivityManager.updateLiveActivity() with new ContentState iOS: Updating content for activity 0A519263-1E46-4BB6-BA4F-F3DDBC081AB4 <<<Lock iPhone>>>> INFO: --------protectedDataWillBecomeUnavailableNotification-------- DEBUG: LiveActivityManager.updateLiveActivity() with new Con
Push notification disappearing with in second from the lock screen! When we use our app to send push notification it dissappear within seconds or stay for few seconds and sometime its just the sound. Please guide me thank you :(
Issue: The screen saver is not shown, and the user is not locked after removing a smart card with a logged in user. I have tried setting tokenRemovalAction to 1, along with various other com.apple.security.smartcard defaults, and I have also tried setting turn on screen saver when login token removed. None of this makes the screen locked on card removal. Is this an issue with MacOS14 or is there a different setting/value that has to be set for this to work correctly?
I am have implemented PIP in my app. When user goes to background while video was playing. App opens PIP and everything works fine. But when user locks the device , PIP is not stopping/Pausing the video. Is there a way I can pause the Video when user locks the device?
Hi,I'm having some issues locking the focus and taking a flash photo on iPhone 10 (iOS 12.0). I've made the simplest camera app I can that turns Flash on using a AVCapturePhotoSettings object, locks focus on the AVCaptureDevice using [device setFocusMode:AVCaptureFocusModeLocked]; and then takes a picture using capturePhotoWithSettings.Regardless of the focus lock, auto focus still often happens, particularly when the preview is out of focus. Am I missing a settings, or a new way to lock focus? I have no issues on the iPhone 6 with this code.This is essentially the full app (i have dropped most the error checking in this example, but no errors pop up):// ViewController.h //#import //@interface ViewController : UIViewController //@end #import #import ViewController.h @interface ViewController () @property (nonatomic) AVCaptureSession *session; @property (nonatomic) AVCapturePhotoOutput *stillImageOutput; @property (nonatomic) AVCaptureVideoPreviewLayer *videoPreviewLayer; @p