Search results for

A Summary of the WWDC25 Group Lab

10,109 results found

Post

Replies

Boosts

Views

Activity

El Capitan boot issue after installing
Hi Max, I seem to have the same issue as others with the el Capitan installation. I've followed your advices. Here the result, can you help?-bash-3.2# cd /Volumes/Macintosh HD ; ls -1 Library/Extensions/ ; find Library/Application Support -iname *.kext ; find Library/Filesystems -iname *.kext ; find System/Library/Extensions -ctime +2d -depth 2ACS6x.kextATTOCelerityFC8.kextATTOExpressSASHBA2.kextATTOExpressSASRAID2.kextArcMSR.kextBJUSBLoad.kextCIJUSBLoad.kextCalDigitHDProDrv.kextHighPointIOP.kextHighPointRR.kextPromiseSTEX.kextSoftRAID.kextUnsupportedhp_io_enabler_compound.kextLibrary/Application Support/Kaspersky Lab/KAV/Data/Updater/Temporary Files/rollback/patch/AutoPatches/kavmac/8.0.2.460/klif.kextLibrary/Application Support/Kaspersky Lab/KAV/Data/Updater/Temporary Files/temporaryFolder/AutoPatches/kavmac/8.0.2.460/klif.kextLibrary/Filesystems/osxfusefs.fs/Support/osxfusefs.kextSystem/Library/Extensions/AppleMobileDevice.kext/ContentsSystem/Library/Extensions/hp_fax_io.kext/ContentsSyst
4
0
789
Oct ’15
OS X 10.11 won't boot at login
Hi Max, please help.Here is my output:ACS6x.kextATTOCelerityFC8.kextATTOExpressSASHBA2.kextATTOExpressSASRAID2.kextArcMSR.kextCalDigitHDProDrv.kextHighPointIOP.kextHighPointRR.kextPromiseSTEX.kextSoftRAID.kextklif.kextklnke.kextLibrary/Application Support/Kaspersky Lab/KAV/Bases/Cache/kimul.kextLibrary/Application Support/Kaspersky Lab/KAV/Bases/Cache/mark.kextSystem/Library/Extensions/AppleMobileDevice.kext/ContentsSystem/Library/Extensions/klif.kext/ContentsSystem/Library/Extensions/klnke.kext/Contents-bash-3.2#Thanks in advance
2
0
590
Oct ’15
Reply to App Thinning / Texture Atlas Clarification
Please, if you can, report back.Atlases and their auto-generation is claimed to be a feature useful for designers to help them more rapidly iterate through art creation.But from the inception of Sprite Kit it's had problems of all sorts, none of which are easy to discern and/or resolve for designers, the group for whom this feature (apparatently) exists.Conversely, designers (especially for games) tend to have enormous experience packing their 2D assets in the traditional ^2 sheets for programmers to use, and even go so far as pixel peep (not to annoy programmers) to make sure there's no edge bleeds or other issues when it's unpacked in the engine.
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Oct ’15
Reply to App Thinning / Texture Atlas Clarification
It's a great shame (sham?) that Apple doesn't feel compelled to do better, current and informative documentation for Sprite Kit and Scene Kit.Thank you, Karim, for taking the time to impart the knowledge gleaned at the only place where they seem to share and discuss things pertinent to their frameworks.Once a year. In America. For a few days. In between presentations. In the free-for-all labs.// Anectodotal story approaching:I filed a support ticket to do with shouldRasterize not seeming to work, and actually causing problems in CA a couple of years ago.Every attempt to focus on the issue was met with obfuscation.Not a denial, didn't ever get to addressing the actual problem. Instead several walks around and through other distractions to (seemingly) deliberately avoid discussion of the issue despite sending several demonstrations of the problem in complete isolation.Eventually received two suggestions:focus on the latest hardware because by making it perform great on that you help Apple sell more new
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Oct ’15
Reply to Encryption before exporting file
What you’re trying to do here is encrypt data at rest. I generally recommend that you use a standard data format for that, something like CMS. That way the security of your data format has been checked by experts. Alas, iOS has no high-level APIs for CMS or any other standard data at rest format; there are APIs for many of the building blocks, but nothing that puts it all together.Note If you'd like to see such support added in the future, I encourage you to file an enhancement request describing your requirements. Please post your bug number, just for the record.In the absence of such APIs you have two options:implement your own data at rest formatimplement a standard data at rest formatThe latter is tricky because the standard formats are generally very complex, so you end up needing a huge library of code to do the job (something like OpenSSL).OTOH, implementing your own format is tricky because it’s very (very very) easy to get things wrong. I found the discussion in the Best practice security section of
Topic: Privacy & Security SubTopic: General Tags:
Oct ’15
spctcl and codesign say all is well, but 10.10 and 10.11 claim unknown developer.
HI Folks,I preparing a new release of an existing product. After I codesign the app bundle, codesign and spctcl give successful test results. However, if I download the app (in a DMG), copy it into the test system's /Applications folder, and trty to run it, Gatekeeper steps up and says that it's from an unrecognized developer.spctl --verbose --assess /Applications/BRU Server/BRU Server Console.app /Applications/BRU Server/BRU Server Console.app: acceptedcodesign -dvv /Applications/BRU Server/BRU Server Console.app Executable=/Applications/BRU Server/BRU Server Console.app/Contents/MacOS/BRU Server Console Identifier=com.tolisgroup.bruserver.console Format=bundle with Mach-O thin (i386) CodeDirectory v=20200 size=64616 flags=0x0(none) hashes=3223+3 location=embedded Signature size=4359 Authority=3rd Party Mac Developer Application: TOLIS Group, Inc. (9F5YWQBW9A) Authority=Apple Worldwide Developer Relations Certification Authority Authority=Apple Root CA Signed Time=Oct 2, 2015, 4:04:08 PM Info.plist
3
0
520
Oct ’15
Reply to ERROR ITMS-90046: "Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value '*' for key 'com.apple.developer.associated-domains' in 'Payload/sihri.app/sihr
I've had this issue for a while. Turning on Associated Domains in Capabilities allowed me to upload for TestFlight but with an empty associated domains array, which has the potential to get the app rejected during a review for the Store.The only thing that worked for me was the following:Turn ON associated domains in Capabilities, but leave it empty.Find the entitlements.plist file for your app in the bundle, manually delete the entilement for associated domains. Don't turn off associated domains in capabilities.Visit https://developer.apple.com/account/ios/identifiers/bundle/bundleList.action and click on App IDs, then your App ID and make sure Associated Domains is turned off.Archive your project, and then the summary when validating/uploading shouldn't include the associated domain entitlement
Oct ’15
Shared Data with App Groups
With tvOS, iCloud is being recommended for data persistence since the Documents directory isn't available, and Caches can be purged between app launches. Does this mean that we shouldn't use shared containers (using [NSFileManager containerURLForSecurityApplicationGroupIdentifier:]) to share between the TV app and the Top Shelf extension?
0
0
310
Oct ’15
Reply to In-App Purchase failing in iOS 9 after payment update
A number of you have submitted requests for DTS support and I've responded by providing instructions as to how to submit a bug report that will get the attention of the iTunes Product Support group. I'm investigating this issue with iTC. In the meantime, I myself was able to replicate this problem with my production account using a third party app that offered an in app purchase to remove ad support. I've documented the problem extensively in the bug report. The issue appears to be that the expected process of handling incomplete transactions is not working in iOS 9.As a recap, when the user attempts an in app purchase and the StoreKit flow issue occurs - that is the StoreKit detects a problem with the credit card info, the user is taken to the Settings App -> Apps and iTunes Store -> User Account Settings -> Payment Information screen to update their credit card info. In the meantime, the initial purchase is failed - in case the user doesn't update their info. However if the credit card inf
Topic: App & System Services SubTopic: StoreKit Tags:
Oct ’15
Keyboard uppercase issue
Summary: So, in Russian keyboard for example in Safari always in Search bar showing uppercase when its turned off.Steps to Reproduce:1. Change keyboard to Russian2. Open Safari or Twitter of you want to3. Type anything to Search bar in Russian(Safari) or for Twitter just start type new tweet.Expected Results: It needs be lowercase charactersActual Results: Its uppercase when lowercase is turned onVersion: iOS 9(13A344), iOS 9.0.1(13A404), iOS 9.0.2(13A452), iOS 9.1 beta 1, beta 2, beta 3, beta 4(13B136).Notes: It needs to be fixed ASAP.Configuration: iPhone 6 64gb. It not depends of device, its global issue.I report it to bugreporter. They closed with commnet of duplicate, but its not duplicate. Report case ID: 22821667(closed) and new one Report case ID: 22996014.It need to be fixed, so, help me to bring all info to Apple.
4
0
637
Oct ’15