Search results for

“Account Locked”

36,237 results found

Post

Replies

Boosts

Views

Activity

Email notification on Lock Screen not appearing
Using the native email ios mail app iPhone 16 pro. When an email arrives the phone will ding or vibrate, but the message notification doesn't appear on lock screen. If you touch the screen from dim to wake then scroll up, the email notification does appear. If the phone is open the notification also appears at the top of screen as it's meant to do. This started yesterday with iOS 18.2 beta 1. It was not resolved with the new update.
4
0
2.1k
Nov ’24
RealityView content disappears when selecting Lock In Place on visionOS
Hi, I'm experiencing an issue where all RealityView content disappears when the user selects Lock In Place from the window management menu (long press on close button). Follow Me works correctly and this happens in Testflight builds only not reproducible when I run locally I have reproduced this with a minimal project containing nothing but a simple red cube — no custom anchors, no app state, no dependencies. Steps to Reproduce: Open an ImmersiveSpace. A red cube is placed 1m in front of the user via RealityView. Long press the X button on any floating window Select Lock In Place. The cube disappears immediately. Expected: Cube remains visible after window is locked Actual: Cube disappears. Minimal reproducible code: var body: some View { RealityView { content in let cube = ModelEntity( mesh: .generateBox(size: 0.3), materials: [SimpleMaterial(color: .red, isMetallic: false)] ) cube.setPosition(SIMD3(0, 1.5, -1), relativeTo: nil) content.add(cube) } } } Device: Apple Vision Pro visi
6
0
2.1k
Mar ’26
Downgrading from Big Sur to Catalina - locked disc (?)
Greetings everyone, A few days ago I downloaded Big Sur to give it a try. As it is still in Beta it is really buggy at some points and I could not work on my art works, that is why I decided to go back to Catalina and wait until Big Sur will release. I used Option+Command+R to get in the recovery mode for Catalina version. I agreed to terms and when I needed to choose a disc - I could not do it because my disc was locked. How do I unlock that disc?
2
0
977
Jul ’20
iOS 10 Lock screen notifications design
Just my 2 cents on the design of the iOS10 lock screen notifications: Yuck!I really hope they revert that design and go back to the current iOS9 style notifiations. Way too bright on a dark wallpaper. Some translucency would resolve the issue, combined with a notification background colour that matches the wallpaper.
8
0
1.3k
Jun ’16
SceneKit crash when simply locking then unlocking device
This crashes every time:Any app that uses a SCNView will crash when the device is locked then unlocked!Steps to Reproduce:-Launch Xcode-File / New / Project / Game / SceneKit (note this template app has no audio)-(objective C or Swift does not matter)-Run the app on your device-Lock then unlock the device-Crash (AVAudioEngineGraph - even though this app has no audio)I have filed a bug.iOS 10.1 does not fix the bug, as the crash still happens in iOS 10.1 beta 3 (14B71) released October 10, 2016Only workaround I have found is to allow background audio (even though no audio is playing!), but in my app I do have audio, and I don't want to allow background audio (otherwise I'd have to manage pausing/unpausing the audio).
5
0
1.7k
Oct ’16
Does itunesconnect still lock out unpublished apps?
It used to be that when you created your App in itunesconnect you had like 90 days or something to submit your app for review or it would lock you out of that name. That was never really that big an issue as I'd just wait to create it until I was ready to publish.Now, however, with TestFlight moving there, I have a conundrum of needing to send builds to my testers, but knowing that I'm well over 90 days away from publishing. Has that lockout been removed now? Is it safe to go ahead and create my app this early?
1
0
263
Feb ’16
LockedCameraCapture Does Not Launch The App from Lock Screen
My implementation of LockedCameraCapture does not launch my app when tapped from locked screen. But when the same widget is in the Control Center, it launches the app successfully. Standard Xcode target template: Lock_Screen_Capture.swift @main struct Lock_Screen_Capture: LockedCameraCaptureExtension { var body: some LockedCameraCaptureExtensionScene { LockedCameraCaptureUIScene { session in Lock_Screen_CaptureViewFinder(session: session) } } } Lock_Screen_CaptureViewFinder.swift: import SwiftUI import UIKit import UniformTypeIdentifiers import LockedCameraCapture struct Lock_Screen_CaptureViewFinder: UIViewControllerRepresentable { let session: LockedCameraCaptureSession var sourceType: UIImagePickerController.SourceType = .camera init(session: LockedCameraCaptureSession) { self.session = session } func makeUIViewController(context: Self.Context) -> UIImagePickerController { let imagePicker = UIImagePickerController() imagePicker.sourceType = sourceType imagePicker.mediaTypes = [UTType.image.iden
1
0
531
Oct ’25
Adding GitHub account to Xcode Accounts
I am attempting to add my GitHub account to Xcode. However, when I go to add my account, I get the error Your account or token is incorrect. I've changed my GitHub password multiple times and it no matter what, I still get this error. Is there anything else I can do to get this up and running? Thank you!
2
0
2.8k
Jan ’21
Central Manager stops discover peripherals when device is locked
Hello everyone!I have an app which must broadcast and detect iOS devices using Core Bluetooth Central and Peripheral managers.It works pretty good in active mode Central Manager discover peripheral several times per second, in background mode (I have turned background modes for Central and Peripheral managers in Xcode settings) frequency of discovering became one time per two-three seconds.But problem comes up when device screen became locked. In that case Central Manager stops calling didDiscoverPeripheral even if I specify service UUID.Also, when screen unlocked Central Manager continue work in background mode.So, my questions are:What sate obtain application when users press lock button?Is there any way to make Central Manager to discover or connect to devices using their service UUID's?Is there is something I missed to turn on to make Central Manager work in locked screen mode?Is there any way to force Central Manager work with locked screen as in background mode?
7
0
3.8k
Jul ’15
Displaying captured image while device orientation is locked
Hello, I am creating an AR application that can be used on iPad and iPhone. While using it on iPhone, I am locking the Apps orientation in portrait mode. When taking a snapshot of the ARView while holding the iPhone in a landscape orientation, and displaying the taken image in a gallery view / Image View, the image is always rotated by 90°. Similarly, when the iPhone is held upside down, the displayed image is shown upside down. Is there a way to make sure that the image is displayed properly?
0
0
638
Nov ’23
Why we still don’t have a way in SwiftUI to lock interface orientation?
After 5 years, 6 releases, SwiftUI still miss fundamental feature, lock interface orientation by view (can be by container, modal, …). Many apps for iPhone just want portrait orientation but in some cases needed a modal in lanscape for a photo viewer or video player. Interface orientation options in info.plist just don’t work because will lock all views in the app.
Topic: UI Frameworks SubTopic: SwiftUI
0
0
392
Jun ’24
need file/record locking for master database
I'm establishing a Muti-user database that will be updated by lan based stations as well as many in the field. That means at the least file & record locking. What's the best solution to have this solution through Macs and iPhones ? Is this going to take a Linux server with an SQL database or is there an apple solution ?
Replies
1
Boosts
0
Views
644
Activity
Mar ’21
Email notification on Lock Screen not appearing
Using the native email ios mail app iPhone 16 pro. When an email arrives the phone will ding or vibrate, but the message notification doesn't appear on lock screen. If you touch the screen from dim to wake then scroll up, the email notification does appear. If the phone is open the notification also appears at the top of screen as it's meant to do. This started yesterday with iOS 18.2 beta 1. It was not resolved with the new update.
Replies
4
Boosts
0
Views
2.1k
Activity
Nov ’24
How do I move from an individual account to an enterprise account?
Hello,I mistakenly signed up for an individual account. I need to change to an enterprise account. How do I do that?Thanks,
Replies
5
Boosts
0
Views
23k
Activity
Apr ’20
RealityView content disappears when selecting Lock In Place on visionOS
Hi, I'm experiencing an issue where all RealityView content disappears when the user selects Lock In Place from the window management menu (long press on close button). Follow Me works correctly and this happens in Testflight builds only not reproducible when I run locally I have reproduced this with a minimal project containing nothing but a simple red cube — no custom anchors, no app state, no dependencies. Steps to Reproduce: Open an ImmersiveSpace. A red cube is placed 1m in front of the user via RealityView. Long press the X button on any floating window Select Lock In Place. The cube disappears immediately. Expected: Cube remains visible after window is locked Actual: Cube disappears. Minimal reproducible code: var body: some View { RealityView { content in let cube = ModelEntity( mesh: .generateBox(size: 0.3), materials: [SimpleMaterial(color: .red, isMetallic: false)] ) cube.setPosition(SIMD3(0, 1.5, -1), relativeTo: nil) content.add(cube) } } } Device: Apple Vision Pro visi
Replies
6
Boosts
0
Views
2.1k
Activity
Mar ’26
Downgrading from Big Sur to Catalina - locked disc (?)
Greetings everyone, A few days ago I downloaded Big Sur to give it a try. As it is still in Beta it is really buggy at some points and I could not work on my art works, that is why I decided to go back to Catalina and wait until Big Sur will release. I used Option+Command+R to get in the recovery mode for Catalina version. I agreed to terms and when I needed to choose a disc - I could not do it because my disc was locked. How do I unlock that disc?
Replies
2
Boosts
0
Views
977
Activity
Jul ’20
iOS 10 Lock screen notifications design
Just my 2 cents on the design of the iOS10 lock screen notifications: Yuck!I really hope they revert that design and go back to the current iOS9 style notifiations. Way too bright on a dark wallpaper. Some translucency would resolve the issue, combined with a notification background colour that matches the wallpaper.
Replies
8
Boosts
0
Views
1.3k
Activity
Jun ’16
SceneKit crash when simply locking then unlocking device
This crashes every time:Any app that uses a SCNView will crash when the device is locked then unlocked!Steps to Reproduce:-Launch Xcode-File / New / Project / Game / SceneKit (note this template app has no audio)-(objective C or Swift does not matter)-Run the app on your device-Lock then unlock the device-Crash (AVAudioEngineGraph - even though this app has no audio)I have filed a bug.iOS 10.1 does not fix the bug, as the crash still happens in iOS 10.1 beta 3 (14B71) released October 10, 2016Only workaround I have found is to allow background audio (even though no audio is playing!), but in my app I do have audio, and I don't want to allow background audio (otherwise I'd have to manage pausing/unpausing the audio).
Replies
5
Boosts
0
Views
1.7k
Activity
Oct ’16
iOs 10.3.2 keyboard click and lock sound gone
Anyone else experciencing sound problems with iOS 10.3.2b1 ?No keyboard click and lock sounds anymore on my iPhone 6SMusic plays fine en telephone rings like normal.
Replies
3
Boosts
0
Views
1.6k
Activity
Apr ’17
Does itunesconnect still lock out unpublished apps?
It used to be that when you created your App in itunesconnect you had like 90 days or something to submit your app for review or it would lock you out of that name. That was never really that big an issue as I'd just wait to create it until I was ready to publish.Now, however, with TestFlight moving there, I have a conundrum of needing to send builds to my testers, but knowing that I'm well over 90 days away from publishing. Has that lockout been removed now? Is it safe to go ahead and create my app this early?
Replies
1
Boosts
0
Views
263
Activity
Feb ’16
LockedCameraCapture Does Not Launch The App from Lock Screen
My implementation of LockedCameraCapture does not launch my app when tapped from locked screen. But when the same widget is in the Control Center, it launches the app successfully. Standard Xcode target template: Lock_Screen_Capture.swift @main struct Lock_Screen_Capture: LockedCameraCaptureExtension { var body: some LockedCameraCaptureExtensionScene { LockedCameraCaptureUIScene { session in Lock_Screen_CaptureViewFinder(session: session) } } } Lock_Screen_CaptureViewFinder.swift: import SwiftUI import UIKit import UniformTypeIdentifiers import LockedCameraCapture struct Lock_Screen_CaptureViewFinder: UIViewControllerRepresentable { let session: LockedCameraCaptureSession var sourceType: UIImagePickerController.SourceType = .camera init(session: LockedCameraCaptureSession) { self.session = session } func makeUIViewController(context: Self.Context) -> UIImagePickerController { let imagePicker = UIImagePickerController() imagePicker.sourceType = sourceType imagePicker.mediaTypes = [UTType.image.iden
Replies
1
Boosts
0
Views
531
Activity
Oct ’25
What methods can determine the user leaves the computer, and then lock the computer
What methods can determine the user leaves the computer, and then lock the computer. For example windows' C++ method GetLastInputInfo()
Replies
6
Boosts
0
Views
734
Activity
Nov ’15
Adding GitHub account to Xcode Accounts
I am attempting to add my GitHub account to Xcode. However, when I go to add my account, I get the error Your account or token is incorrect. I've changed my GitHub password multiple times and it no matter what, I still get this error. Is there anything else I can do to get this up and running? Thank you!
Replies
2
Boosts
0
Views
2.8k
Activity
Jan ’21
Central Manager stops discover peripherals when device is locked
Hello everyone!I have an app which must broadcast and detect iOS devices using Core Bluetooth Central and Peripheral managers.It works pretty good in active mode Central Manager discover peripheral several times per second, in background mode (I have turned background modes for Central and Peripheral managers in Xcode settings) frequency of discovering became one time per two-three seconds.But problem comes up when device screen became locked. In that case Central Manager stops calling didDiscoverPeripheral even if I specify service UUID.Also, when screen unlocked Central Manager continue work in background mode.So, my questions are:What sate obtain application when users press lock button?Is there any way to make Central Manager to discover or connect to devices using their service UUID's?Is there is something I missed to turn on to make Central Manager work in locked screen mode?Is there any way to force Central Manager work with locked screen as in background mode?
Replies
7
Boosts
0
Views
3.8k
Activity
Jul ’15
Displaying captured image while device orientation is locked
Hello, I am creating an AR application that can be used on iPad and iPhone. While using it on iPhone, I am locking the Apps orientation in portrait mode. When taking a snapshot of the ARView while holding the iPhone in a landscape orientation, and displaying the taken image in a gallery view / Image View, the image is always rotated by 90°. Similarly, when the iPhone is held upside down, the displayed image is shown upside down. Is there a way to make sure that the image is displayed properly?
Replies
0
Boosts
0
Views
638
Activity
Nov ’23
Why we still don’t have a way in SwiftUI to lock interface orientation?
After 5 years, 6 releases, SwiftUI still miss fundamental feature, lock interface orientation by view (can be by container, modal, …). Many apps for iPhone just want portrait orientation but in some cases needed a modal in lanscape for a photo viewer or video player. Interface orientation options in info.plist just don’t work because will lock all views in the app.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
0
Boosts
0
Views
392
Activity
Jun ’24