Search results for

“Account Locked”

34,379 results found

Post

Replies

Boosts

Views

Activity

Locked all the settings in AVFoundation but brightness sometimes still changes.
I locked all the setting I could find in AVFoundation, including focus, exposure and white balance. In theory, for one object, the photos should be exactly the same in the same light environment.However, the brightness of photos depended on the initial light environment. For example, if I point the camera to the sun at the beginning, after I moved it back to the test environment and take a picture, the pictures will be darker than the ones taken directly in the test environment. I checked the exif data of the photos and found that the settings were locked (namely, same).Thanks in advance for any suggestion.
2
0
1.8k
Aug ’16
Passcode Device Lock, Background Job Core Data Save
I am having issue updating core data while in background mode, I am wondering if anyone has seen this issue.I am using encrypted core data framework here https://github.com/project-imas/encrypted-core-dataI have a background batch job setup to run every five minutes, this job basically just fetch some data from internet and update a core data database.Everything works fine as long as the device is not locked with a password, however once the device is locked with a password then the actual database update fails.I search around and find that any device with password locked will have all their application files locked as well. At first it was both query and save that was failing with some disk io error. I found out I need to update the file attributes of the sqllite database file withNSDictionary *updateAttributes = [NSDictionary dictionaryWithObject:NSFileProtectionNone forKey:NSFileProtectionKey]; if (![[NSFileManager defaultManager] setAttributes:updateAttributes ofItemAtP
0
0
933
Sep ’15
Music info showing in Command Center but not Lock Screen
Using Swift 4+, iOS 11.4+, Xcode 10+I've built a music player using MPMediaPlayer and I can interact with it from the Command Center, however I would like to be able to also use it on the Lock Screen.(To be honest, I'm a bit confused as to why it's showing/working in the Command Center as I have not written any code to do this.Nevertheless, I would also like it to show in the Lock Screen.)This is what I have done so far:1) I'm using the applicationMusicPlayer and made certain something is playing during my tests:let myMP:MPMusicPlayerController = MPMusicPlayerController.applicationMusicPlayerPlus I've also tried these variations with the same failed results:let myMP:MPMusicPlayerController = MPMusicPlayerController.applicationQueuePlayerandlet myMP:MPMusicPlayerApplicationController = MPMusicPlayerApplicationController.applicationQueuePlayer2) Set the BackgroundModes to include Audio, Fetch, and Remote Notificationsunder Capabilities > Background Modes (info.plist)3) Added AVAudioSession
0
0
1.1k
Jan ’19
Reply to Core NFC writeLock()
OK - yes being stupid - missed out some returns! Not totally sure why it would not just fall through correctly, but this has fixed itif (self.lockTag) { // locking required also os_log(Tag needs to be locked) tag.writeLock() { (error: Error?) in if error != nil { os_log(LOCK FAILED!!) session.alertMessage = Lock failed try again session.invalidate() return } else { session.alertMessage = Write and Lock successful session.invalidate() return } } returnThis works perfectly and locks the tags.
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’19
Reply to Membership Says Identity Issue. I've already paid $99 under individual license & Still it says Enrollment Pending
This issue has probably arisen because you applied for a Apple Developer program from a country different to the nationanlity of your Apple ID and bank/credit card. Instead of activating your Developer account, the system locked everything because it considers your situation as a potential bank fraud.So you're right, you need to get in touch with the Developer Account Support team if you want to try to get things moving - phone numbers for different countires are here:https://developer.apple.com/contact/phone.phpYou can also contact them via Web Message here:https://developer.apple.com/contact/submit.phpGood luck-Max
Sep ’15
Account is terminated because transferring app from another account
I bought someone else's app and they transferred their app to my account last year. The app was working fine until today when I updated the app I got the message that my account was suspended due to a link to a suspended account. I suspect that after transferring the app to my account, my seller's account broke the rules and was terminated. When I bought the app, I couldn't tell if the seller's account was in violation or not. But apple thought that my account was related to another account and terminated my account. Is there a way to explain to apple so they can recover my account? Help me please.
2
0
800
Jun ’23
i bypassed a lock on an iPhone 12 Pro Max
https://www.youtube.com/watch?v=V4r6H6rKKts but Apple's security team didn't see it approprite to open a folder of evidence concerning an Apple lock that was bypassed in ten seconds. https://www.youtube.com/watch?v=59g4SjpmoEI&list=PLr4b81APE2kVlsKXtBxrL3I4WAWQHO9VJ&index=1 ps- Apple has taken away my #GodGiven fundamental human right to privacy without my #informedconsent. it is reasonable for me to believe that they have enabled and allowed my business's and my personal devices to be supervised and remotely managed. this is being done in secret. i was never informed of it. i never consent to it. this unauthorized MDM has caused damage to my health.
0
0
418
Oct ’21
Reply to Music widget permanently on lock screen?
One Solution Closing the Music app will remove it from the Lock Screen. More Testing If you lock it with the Music app open, then it will show when you go to unlock the iPad. Any media app open + most recently played when you locked the screen will show up as a Lock Screen Notification. E.g., if you have Pandora and Netflix open it will show the notification of the app that was last played before it locked. Turning off the app Lock Screen notification in Settings >Notifications>[app], does not remove it from the Lock Screen😟 I assume this is working as Apple intended, and not a bug, but I would like to have the choice to keep it turned off.
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’20
Notifications on your Lock screen in iOS 10. Cannot swipe left over it
For about a week now I cannot swipe left on notifications on the lock screen. I can still swipe control centre up and down so my lock screen isn't totally frozen, I just can't respond to notifications or swipe them away.Is anyone else experiencing this problem or know how to fix it?
Replies
0
Boosts
0
Views
343
Activity
Jan ’17
Locked all the settings in AVFoundation but brightness sometimes still changes.
I locked all the setting I could find in AVFoundation, including focus, exposure and white balance. In theory, for one object, the photos should be exactly the same in the same light environment.However, the brightness of photos depended on the initial light environment. For example, if I point the camera to the sun at the beginning, after I moved it back to the test environment and take a picture, the pictures will be darker than the ones taken directly in the test environment. I checked the exif data of the photos and found that the settings were locked (namely, same).Thanks in advance for any suggestion.
Replies
2
Boosts
0
Views
1.8k
Activity
Aug ’16
Passcode Device Lock, Background Job Core Data Save
I am having issue updating core data while in background mode, I am wondering if anyone has seen this issue.I am using encrypted core data framework here https://github.com/project-imas/encrypted-core-dataI have a background batch job setup to run every five minutes, this job basically just fetch some data from internet and update a core data database.Everything works fine as long as the device is not locked with a password, however once the device is locked with a password then the actual database update fails.I search around and find that any device with password locked will have all their application files locked as well. At first it was both query and save that was failing with some disk io error. I found out I need to update the file attributes of the sqllite database file withNSDictionary *updateAttributes = [NSDictionary dictionaryWithObject:NSFileProtectionNone forKey:NSFileProtectionKey]; if (![[NSFileManager defaultManager] setAttributes:updateAttributes ofItemAtP
Replies
0
Boosts
0
Views
933
Activity
Sep ’15
Music info showing in Command Center but not Lock Screen
Using Swift 4+, iOS 11.4+, Xcode 10+I've built a music player using MPMediaPlayer and I can interact with it from the Command Center, however I would like to be able to also use it on the Lock Screen.(To be honest, I'm a bit confused as to why it's showing/working in the Command Center as I have not written any code to do this.Nevertheless, I would also like it to show in the Lock Screen.)This is what I have done so far:1) I'm using the applicationMusicPlayer and made certain something is playing during my tests:let myMP:MPMusicPlayerController = MPMusicPlayerController.applicationMusicPlayerPlus I've also tried these variations with the same failed results:let myMP:MPMusicPlayerController = MPMusicPlayerController.applicationQueuePlayerandlet myMP:MPMusicPlayerApplicationController = MPMusicPlayerApplicationController.applicationQueuePlayer2) Set the BackgroundModes to include Audio, Fetch, and Remote Notificationsunder Capabilities > Background Modes (info.plist)3) Added AVAudioSession
Replies
0
Boosts
0
Views
1.1k
Activity
Jan ’19
NSUbiquitousKeyValueStore is locking main thread on iOS 16 beta 3
Trying to access value using NSUbiquitousKeyValueStore.default.object(forKey:) locking the main thread on iOS 16 beta 3, iPhone 11 Pro. Is that known issue or something that only happens to me? :)
Replies
5
Boosts
0
Views
1.4k
Activity
Jul ’22
Reply to Core NFC writeLock()
OK - yes being stupid - missed out some returns! Not totally sure why it would not just fall through correctly, but this has fixed itif (self.lockTag) { // locking required also os_log(Tag needs to be locked) tag.writeLock() { (error: Error?) in if error != nil { os_log(LOCK FAILED!!) session.alertMessage = Lock failed try again session.invalidate() return } else { session.alertMessage = Write and Lock successful session.invalidate() return } } returnThis works perfectly and locks the tags.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’19
developer accounts
if you properly link a guardian account to a teenagers account can you use the teenagers account to set up a developer account?
Replies
0
Boosts
0
Views
241
Activity
Jun ’20
Reply to how to lock screen programmatically ?
by prevent screen lock, do you mean prevent auto lock or is it possible to disable the ability to lock ones phone entirely while in the app?
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’17
Anybody else's lock screen just not allowing them to reply to messages?
I have the black iPhone 7 running iOS 10. And the setting on to allow me to reply while on my lock screen is in. However it won't let me. I've toggled the option on and off countless times and hard reset(held lock and volume button), but nothing seems to be working. Anybody else experience this?
Replies
1
Boosts
0
Views
181
Activity
Oct ’16
Company Bank Account for Individual Developer Account
Hello,I have individual Apple Developer account and I am using an individual bank account for getting payments for 2 years. Now I want to use my company account for getting payments. Can I use it? Best
Replies
1
Boosts
0
Views
1.2k
Activity
Nov ’17
Reply to Membership Says Identity Issue. I've already paid $99 under individual license & Still it says Enrollment Pending
This issue has probably arisen because you applied for a Apple Developer program from a country different to the nationanlity of your Apple ID and bank/credit card. Instead of activating your Developer account, the system locked everything because it considers your situation as a potential bank fraud.So you're right, you need to get in touch with the Developer Account Support team if you want to try to get things moving - phone numbers for different countires are here:https://developer.apple.com/contact/phone.phpYou can also contact them via Web Message here:https://developer.apple.com/contact/submit.phpGood luck-Max
Replies
Boosts
Views
Activity
Sep ’15
Account is terminated because transferring app from another account
I bought someone else's app and they transferred their app to my account last year. The app was working fine until today when I updated the app I got the message that my account was suspended due to a link to a suspended account. I suspect that after transferring the app to my account, my seller's account broke the rules and was terminated. When I bought the app, I couldn't tell if the seller's account was in violation or not. But apple thought that my account was related to another account and terminated my account. Is there a way to explain to apple so they can recover my account? Help me please.
Replies
2
Boosts
0
Views
800
Activity
Jun ’23
Lock-screen Widget in iOS 16: .accessoryInline without date
Hi, When I create a lock-screen widget with .accessoryInline, short date is always displayed as you can see in the screenshot below: The text Thu 21 does not come from my widget. How can I eliminate this? Thanks, Kaz
Replies
2
Boosts
0
Views
1.7k
Activity
Jul ’22
i bypassed a lock on an iPhone 12 Pro Max
https://www.youtube.com/watch?v=V4r6H6rKKts but Apple's security team didn't see it approprite to open a folder of evidence concerning an Apple lock that was bypassed in ten seconds. https://www.youtube.com/watch?v=59g4SjpmoEI&list=PLr4b81APE2kVlsKXtBxrL3I4WAWQHO9VJ&index=1 ps- Apple has taken away my #GodGiven fundamental human right to privacy without my #informedconsent. it is reasonable for me to believe that they have enabled and allowed my business's and my personal devices to be supervised and remotely managed. this is being done in secret. i was never informed of it. i never consent to it. this unauthorized MDM has caused damage to my health.
Replies
0
Boosts
0
Views
418
Activity
Oct ’21
Reply to Music widget permanently on lock screen?
One Solution Closing the Music app will remove it from the Lock Screen. More Testing If you lock it with the Music app open, then it will show when you go to unlock the iPad. Any media app open + most recently played when you locked the screen will show up as a Lock Screen Notification. E.g., if you have Pandora and Netflix open it will show the notification of the app that was last played before it locked. Turning off the app Lock Screen notification in Settings >Notifications>[app], does not remove it from the Lock Screen😟 I assume this is working as Apple intended, and not a bug, but I would like to have the choice to keep it turned off.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’20