Search results for

İOS 26 beta battery %1

250,946 results found

Post

Replies

Boosts

Views

Activity

better than perfect
Hi dear developers , Thanks for improvement the new iOS firstly, but I think new features not enough or it is not expected from users, that means you are not discover what we need or expect ? You know some jailbreak(*****) features some of them really useful and great features. Why we can't create it new one for example I was expecting night mode it's really necessary for me also if you create it will be affect in a good way on battery maybe we can use more hours. Also I checked note features now it's great but why we don't have any color options. I think every year some good features coming from some jailbrek developers for example before iOS 7 come out we don't have control center but they have already offered on *****. I mean I really don't want to use ***** but as I told you we can't release this features that's why many people use that. If you check great ones and if you think necessary some of them you can create a new one. Finally, I think it's posi
0
0
334
Jun ’15
Disable button not working
I am new to iOS app development and recently I was making a simple login app whose interface looks like this:http://imgur.com/W3nxMEGI just want the Login button to take me to the next ViewController only when:1) All fields are filled2) Passwords matchI created a pointer modButton that is hooked with the Login butotn in the storyboard. I disabled it in the loginButton action method but it doesnt seem to work.link to my code: imgur.com/01Y6X6UAnybody willing to help me solve this issue?Regards
2
0
765
Jun ’15
Reply to Can you submit to the App Store an app built with Xcode 7 as long as you are not targeting iOS 9?
While I have the same take on this as the other two posters Apple explicitly statet the fact in the past.This time - if you look into the XCode 7 release notes - there's this section:Submitting an archive built with BITCODE_ENABLED=NO will fail during upload. (21247555)Workaround: Build the archive with BITCODE_ENABLED=YES and then uncheck the “Include bitcode”option when distributing the archive (functionally equivalent).Not sure about the reasoning behind that, but why mention that you have to takecertain extra steps when submitting with the beta if it is - as always in the past - not allowed?
Jun ’15
Reply to Has anyone Noticed Siri is sensitive
Yeah I've noticed this too. I think it's a beta 1 bug where when you click the home button, the phone freezes for a moment, so when the software becomes active again it thinks that you were holding the button because of the time difference between when it got the events.iOS7 and 8 betas fixed this initial slowness in the 2nd beta once they can confirm that the build is actually installing for everyone haha.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can you upgrade from a 10.10.4 beta?
You can. I did and the update process did work fine for me after the invitation code being unlocked for the German AppStore.But I found, 10.11 has way more bugs than 10.10.4 beta, so, for example, for me, Photos is not launching anymore and I got a problem with iCloud mail in Mail while all other accounts I got in there continue to work fine.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to WWDC Platforms State of the Union Notes
There appear to be couple of things at play regarding rootless mode:/System/Library/LaunchDaemons/com.apple.rootless.init.plist - Calls /etc/libexec/rootless-init (registers with XPC?)/System/Library/Sandbox/rootless.conf - Configures the system locations to sandbox - an asteriks or name in the first column appears to override this globally or by executable name/System/Library/Sandbox/rootless.compat - Whitelisted executables? Legacy?/System/Library/Sandbox/com.apple.xpc.launchd.rootless.plist - XPC authorizations configThe one tool that can enable and disable rootless mode right now is on the Recovery partition under /System/Library/CoreServices/Security Configuration.app. It reboots the Mac immediately after applying the configuration change (it calls shutdown -r now).This appears to write a non-removable key (as far as I've been able to determine so far) named csr-active-config which the Security Configuration tool writes to. Notable is that this also appears to affect single user mode - I was not
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to iOS 9 Beta battery life
I understand what people are saying. OF COURSE it's not unusual that the beta is eating battery life - it seems like early betas almost always have this problem.It's just that, battery life was a major feature in the presentation. It was expected. Therefore, it's interesting that the first thing the beta does is kill the battery since they talked so much about how it _wouldn't_ kill the battery.Anyway - just testing out this forum. Not sure I like it. 😁
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Get X509 Data without OpenSSL
I previously would check if one certificate signed another (used to construct a certificate chain, NOT to validate), using the following code to create the data representation for the leaf certificate: CFDataRef data = SecCertificateCopyData(certificate); const UInt8 *buffer = CFDataGetBytePtr(data); X509 *x = X509_new(); d2i_X509(&x, &buffer, CFDataGetLength(data)); CFRelease(data); int length = i2d_X509_CINF(x->cert_info, NULL); unsigned char *info = malloc(length), *infoPtr = info; i2d_X509_CINF(x->cert_info, &info); X509_free(x); return CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, infoPtr, length, kCFAllocatorMalloc);OpenSSL is now gone from 10.11, is there another method of creating this representation?I didn't see anything like this in CryptoCompatibility
7
0
2.5k
Jun ’15
Filesystem Lab notes
Question: On Yosemite, there is an issue where FileVault 2 will report Encrypted Paused during the encryption process, then never resume. It won't decrypt, and the only fix seemed to be deleting the CoreStorage volume.Is there a fix for this besides deleting the CoreStorage volume? For example, how to unpause and either resume encryption or decrypt?Answer:The Encryption Paused issue was addressed in 10.10.3. The root cause was a problem with resizing the CoreStorage volume. When the CoreStorage volume was unable to grow, the encryption was paused and could not resume until the resize issue was addressed.To fix this issue:1. Update your Mac to 10.10.3, or boot from an alternate drive which is running 10.10.3.2. Un-lock the encrypted drive if necessary3. Open Terminal4. Run the following command to get your Mac's disk identifier:diskutil list5. Once you have the disk identifier information, run the following command:sudo fsck_cs -y disk_identifier_goes_here6. fsck_cs should repair the CoreStorage volum
6
0
2.1k
Jun ’15
Reply to Filesystem Lab notes
I asked about the new System Integrity Protection functionality and was told that I should ask about that in the Security labs, as it wasn't a filesystem issue. That squares with other research I've been doing on System Integrity Protection, as I'm not seeing any immutable flags on files.Side note: One of the things protected by System Integrity Protection is /System/Library/CoreServices/DefaultDesktop.jpg. Also locked is /Library/Desktop Pictures/El Capitan.jpg
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15