Search results for

Account Locked

31,833 results found

Post

Replies

Boosts

Views

Activity

Cannot lock focus with flash, iPhone 10
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
0
0
1.1k
Jan ’19
Play workout audio prompt when iPhone is locked.
HiI'm making a running app and I want to deliver an audio prompt to motivate the runner every few minutes.How do I go about delivering the audio prompt when the users phone is locked as they run?I have background audio selected so the currently playing audio contines when the user initially locks their phone. However, how do I deliver the next prompt in say 5 minutes time?I'm struggling to keep the app alive in the background other than using location services, however the user may not want to share their location so the app fails.Any suggestions welcome.Thanks.Steve
1
0
676
Mar ’19
Opening maps from iOS today extension while screen is locked
Hi all,I have a today extension that opens a map via a call of MKMapItem.openMapsWithItems. It works fine if the phone is not locked, but if the today extension is opened from the lock screen, the call doesn't do anything. I would expect the same to happen if you do an open URL, namely, the screen Touch ID or Enter Passcode appears, and once you unlocked the phone, it continues with opening the URL.Is there any way to achieve the openURL behaviour when opening maps with MKMapItem.openMapsWithItems?Thanks, Markus
0
0
266
Nov ’15
App running in background or when the screen is locked
Hi,My app start to count the seconds when oppened. Follow the code:import UIKitclass ViewController: UIViewController { @IBOutlet weak var label1: UILabel! //Display showing the seconds var i = 0 //Counter override func viewDidLoad() { super.viewDidLoad() // After loading the view. Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(Estouro), userInfo: nil, repeats: true) } @objc func Estouro(){ i = i + 1 label1.text = String(i) //Display seconds }}What can I do to keep counting the secounds in background or after lock the screen?Thank you,
4
0
1.5k
Jun ’20
Mail.app account/System account
Hi all, I have an inactive Exchange account showing up in my Internet Accounts in the System Prefs panel. Its actually really old. It should be deleted and, indeed, it used to be! But somehow, after upgrade to Big Sur, its back from the dead! When I try to delete it in System Prefs, it goes away for about 15 seconds. Then it reappears, I guess from iCloud keychain! What gives? How do I permanently destroy this bad guy? Pavel
1
0
696
Jan ’21
Saving to Core Data during device locking & unlocking
The following error message SIGABRT: This NSPersistentStoreCoordinator has no persistent stores (device locked). It cannot perform a save operation has indicated need to provide for sequencing of the Core Data context saving operation. We want to avoid .save() if locking is in flight, also postpone .save() until unlocking has completed. Currently our .save() is bracket by do-catch block but this is notably not helping in the case of SIGABR signal Given that our saving operations must take place synchronously, what is the recommended practice to implement such sequencing with respect to locking / unlocking
0
0
515
Sep ’23
Upgrading security a step to be able to lock individual app.
Hellow Sir/ Mam from last some years am using apple products. I think this company provide most stable product and in mater of over all device security this brand never compromise but I still think that in mater of individual app security this brand had not think till date. This brand have everything its own and don't recommend to use other's product for example it have Siri for personal assistan, Apple Map for navigation, Apple Music for music lover, iBook for reader etc, which I think are the key features of the brand, but after having everything still if I question Apple that is it possible to lock individual app including all third app the answer I will get that I have to go for third party app. So is possible to develop a app, like Siri which have direct control from device settings, to lock individual app Including all app from Apple and other third party app or else we can say upgrading restrictions option to be able to lock individual apps.THANK YOU
1
0
424
Aug ’17
Lock-screen image & radio name
Hi,Hope I'm posting to the right place.Made a small UIWebView-based app which opens a site of mine. The site streams an internet radio using <audio> tags - pretty simple and works fine. I then set the audio session category to Playback, so it would work when the phones is locked or other apps are being used. Now when I lock the screen, it looks like this:https://www.upload.ee/image/6704904/IMG_0086.PNGThe pause/play works fine etc, but how could I hide the URL? Even better, replace it with my own text or something? And how could I add my own picture instead of the note?I'd really appreciate if anyone could help me out here 🙂Greetings and thanks in advance!
1
0
222
Feb ’17
MPMusicPlayerController ApplicationMusicPlayer stops playing when the screen locks
I'm using MPMusicPlayerController - ApplicationMusicPlayer with the play audio background mode enabled under Capabilities. When I load and play an iTunes Music track with the applictionMusicPlayer the audio stops when the screen locks or the app goes into the background. My test app also plays bundled audio simultaneously, and that audio continues playing when the screen locks but not the Apple/iTunes music. The issue is in all the betas I've tested.Has anyone else encountered this? Is there a new option that would affect this or is this just an iOS 13 Beta bug? For any interested Apple devs there is a sample app submitted through Feedback Assistant demonstrating this bug. (FB6946855)
3
0
1.5k
Aug ’19
Locking files with FileProvider on Sonoma has different behaviour than Ventura.
We're trying to implement a file locking mechanism to prevent multiple users from editing the same file at the same time causing conflicts. Our previous implementation worked well on Ventura, but on Sonoma, even when just previewing a file in Finder in Column View, as opposed to editing, it locks. This is the same behaviour we experienced with Apple's FruitBasket sample code. There is a isFileViewerRequest flag inside the NSFileProviderRequest object provided with the NSFileProviderReplicatedExtension enumerator function. We thought this would indicate a file being edited. After further investigation, we were told that the isFileViewerRequest flag just indicates if a file is being presented, not just edited. We find the intended behaviour a bit strange, why would anyone want an icon next to a file to indicate presented? Why is the behaviour working fine on Ventura as a locking mechanism but on Sonoma it can only be considered a presented mechanism? If the intended behaviour is to in
0
0
551
Mar ’24